I have a combobox in the templatecolumn in my grid.
<
telerik:GridTemplateColumn HeaderText="Device Type" SortExpression="DeviceDisplayValue"
UniqueName="DeviceTemplateColumn" EditFormColumnIndex="1">
<ItemTemplate>
<asp:Label runat="server" ID="lblDevice" Text='<%# Bind("DeviceDisplayValue") %>'></asp:Label>
</ItemTemplate>
<EditItemTemplate>
<telerik:RadComboBox ID="ddlDeviceAW" runat="server" EnableLoadOnDemand="true"
LoadingMessage="Loading Device..." MarkFirstMatch="True" ToolTip="Select a Device"
OnItemsRequested="ddlDeviceAW_ItemsRequested" EnableVirtualScrolling="true">
</telerik:RadComboBox>
</EditItemTemplate>
</telerik:GridTemplateColumn>
I want to populate the dropdown from code behind on runtime.
How do i find the combo box in the grid in my ItemsRequested event?
