I have a dropdown column within the template column
<
telerik:GridTemplateColumn HeaderText="Device Type" SortExpression="DeviceDisplayValue" UniqueName="DeviceType" EditFormColumnIndex="1">
<ItemTemplate><asp:Label runat="server" ID="lblDevice" Text='<%# Bind("DeviceDisplayValue") %>'></asp:Label></ItemTemplate>
<EditItemTemplate><telerik:RadComboBox ID="ddlDeviceAW" runat="server" LoadingMessage="Loading Device..." MarkFirstMatch="True" ToolTip="Select a Device"></telerik:RadComboBox></EditItemTemplate>
</telerik:GridTemplateColumn>
I am populating the dropdowns on my ItemCommand event .
If my grid is in edit mode I want to pre select the grid value in the combo box.
I am unable to set that value.
How can i do that?