I have a RADGrid on a page, the grid has 2 rows. Im using a GridDropDownColumn to pick the items for the grid column, but the data isnt being displayed. The 2 rows are there, but nothing is displayed in the appropriate columns (Category)
The dropdown appears when I select edit, but not in normal display mode. Anyone know what im missing here ?
| <Columns> |
| <telerik:GridBoundColumn DataField="ID" DataType="System.Int32" HeaderText="ID" |
| ReadOnly="true" Visible="false" SortExpression="ID" UniqueName="ID"> |
| </telerik:GridBoundColumn> |
| <telerik:GridDropDownColumn DataField="Category" |
| ListTextField="Category" ListValueField="Category" HeaderText="Category" UniqueName="SecondaryCategory"> |
| </telerik:GridDropDownColumn> |
| </Columns> |