In a rg:
<telerik:RadGrid ID="rg" runat="server">
<MasterTableView DataKeyNames="FormId" CommandItemDisplay="Top" EditMode="InPlace">
<Columns>
I have two <telerik:GridTemplateColumn... />. One with a checkbox and the other with a dropdownlist inside the <EditItemTemplate>.
How do I access controls inside the <EditItemTemplate> of a GridTemplateColumn when the "Insert new record" button in the CommandItem (I like to load the dropdown list and set checked on the checkbox)?
I can access the controls from the ItemDataBound RadGrid event (Case GridItemType.EditItem). I this is the place, how do I then distinguish between EditMode and InsertMode?
<telerik:RadGrid ID="rg" runat="server">
<MasterTableView DataKeyNames="FormId" CommandItemDisplay="Top" EditMode="InPlace">
<Columns>
I have two <telerik:GridTemplateColumn... />. One with a checkbox and the other with a dropdownlist inside the <EditItemTemplate>.
How do I access controls inside the <EditItemTemplate> of a GridTemplateColumn when the "Insert new record" button in the CommandItem (I like to load the dropdown list and set checked on the checkbox)?
I can access the controls from the ItemDataBound RadGrid event (Case GridItemType.EditItem). I this is the place, how do I then distinguish between EditMode and InsertMode?