All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_UpdateCommand(
object
sender, Telerik.Web.UI.GridCommandEventArgs e)
{
if
(e.Item
is
GridEditableItem && e.Item.IsInEditMode)
GridEditableItem edit = (GridEditableItem)e.Item;
TextBox txt = (TextBox)edit[
"UniqueName"
].Controls[0];
//access boundcolumn
string
value=txt.Text;
//get the value
}