I am using two columns in my EditFormSettings, and I want to set the width of the text box on the edit to 90%. I have tried using multiple properties on the ItemStyle, like ItemStyle-CssClass="NameOfCssClassThatHas90%Width" and ItemStyle-Width="90%" without any success. The textbox that shows up only has about 40% width.
Any Suggestions? As I have about 20 controls in the edit form, using a code-behind isn't my preferred method, and I didn't see how to use a ColumnEditor Class. Can one columneditor class be attached to multiple GridBoundColumns?
I am trying to create a professional looking application, and without changing that width, it just doesn't look good.
Here is my code for the column, if you are interested. You will notice this is an "email" type form.
Any Suggestions? As I have about 20 controls in the edit form, using a code-behind isn't my preferred method, and I didn't see how to use a ColumnEditor Class. Can one columneditor class be attached to multiple GridBoundColumns?
I am trying to create a professional looking application, and without changing that width, it just doesn't look good.
Here is my code for the column, if you are interested. You will notice this is an "email" type form.
<telerik:GridBoundColumn DataField="cRegarding" EditFormColumnIndex="0" MaxLength="150"
FilterControlAltText="Filter cRegarding column" HeaderText="Subject"
SortExpression="cRegarding" UniqueName="cRegarding" ></telerik:GridBoundColumn>