I have a RadGrid with a GridDropDown column:
| <telerik:RadGrid ID="DGrid" runat="server" AutoGenerateColumns="False" |
| Width="100%" AllowAutomaticDeletes="True" GridLines="None" OnItemDataBound="DGrid_ItemDataBound" |
| OnNeedDataSource="DGrid_NeedDataSource" OnInsertCommand="DGrid_InsertCommand" |
| OnUpdateCommand="DGrid_UpdateCommand" OnDeleteCommand="DGrid_DeleteCommand" |
| AllowMultiRowEdit="false"> |
| <mastertableview commanditemdisplay="Bottom" editmode="InPlace"> |
| <HeaderStyle Wrap="false" /> |
| <RowIndicatorColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </RowIndicatorColumn> |
| <ExpandCollapseColumn> |
| <HeaderStyle Width="20px"></HeaderStyle> |
| </ExpandCollapseColumn> |
| <Columns> |
| <telerik:GridDropDownColumn DataField="Id" UniqueName="Id" |
| ListValueField="SystemID" ListTextField="SystemName" HeaderText="D" |
| ItemStyle-Wrap="false" ItemStyle-Font-Names="Arial" ItemStyle-Width="500px"> |
| <ItemStyle Font-Names="Arial" /> |
| </telerik:GridDropDownColumn> |
| <telerik:GridButtonColumn CommandName="Delete" Text="Delete" UniqueName="DeleteColumn" ButtonType="LinkButton" > |
| </telerik:GridButtonColumn> |
| </Columns> |
| </mastertableview> |
| <clientsettings> |
| <Selecting AllowRowSelect="false" /> |
| </clientsettings> |
| </telerik:RadGrid> |
My questions are:
How do I specify that the box that holds the values in the dropdownlist needs to be X pixels wide?
The text that shows up in the RadCombobox, how do you set the style?
Just not sure where to find the answers.
J