All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_InsertCommand(
object
sender, GridCommandEventArgs e)
{
try
GridEditableItem insert= (GridEditableItem)e.Item;
TextBox txt = (TextBox)insert[
"ID"
].Controls[0];
// Access BoundColumn
string
id=txt.Text;
//Get the value
DropDownList drop = (DropDownList)insert.FindControl(
"DropDownList1"
);
// Access Template column DropDownList
val = drop.SelectedValue;
//Selected value
//Your Code
}
catch
(Exception ex)