or

protected void RadGrid1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e) { if ((e.CommandName == RadGrid.PerformInsertCommandName)) { //the dropdown list will be the first control in the Controls collection of the corresponding cell DropDownList list = (e.Item as GridEditableItem)["ddlContactName"].Controls[0] as DropDownList; } } protected void ObjectDataSource1_Inserting(object sender, System.Web.UI.WebControls.ObjectDataSourceMethodEventArgs e) { ((DAL.DTO.DataTypeObject)e.InputParameters[0]).product.product_id = (int)Session["CustomerID"]; //These dont work...how can I access my Edit form or GridCommandEventArgs from this event in objectDatasource //inserting event to access my dropdownlist?? //Telerik.Web.UI.GridEditFormInsertItem myInsertForm = ((Telerik.Web.UI.GridEditFormInsertItem)RadGrid1.FindControl("EditFormControl")); //Telerik.Web.UI.GridEditFormInsertItem myInsertForm = ((Telerik.Web.UI.GridEditFormInsertItem)RadGrid1.EditItems[0]); <asp:RadioButtonList ID="rbl_radio_list" runat="server" Enabled="false"> <asp:ListItem Text="Radio List Item 1" Value="1"></asp:ListItem> <asp:ListItem Text="Radio List Item 2" Value="2"></asp:ListItem> <asp:ListItem Text="Radio List Item 3" Value="3"></asp:ListItem></asp:RadioButtonList><asp:RadioButton ID="rdb_radio" runat="server" Text="Radio 1" Enabled="false" Checked="false"/><asp:CheckBoxList ID="cbl_check_list" runat="server" Enabled="false"> <asp:ListItem Text="Check List Item 1" Value="1"></asp:ListItem> <asp:ListItem Text="Check List Item 2" Value="2"></asp:ListItem> <asp:ListItem Text="Check List Item 3" Value="3"></asp:ListItem></asp:CheckBoxList><asp:CheckBox ID="cbx_check" runat="server" Text="Check 1" Enabled="false" Checked="false" /><telerik:RadFormDecorator ID="rfd_radio" runat="server" DecoratedControls="RadioButtons" /><telerik:RadFormDecorator ID="rfd_check" runat="server" DecoratedControls="CheckBoxes" />