All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemCommand(
object
source, GridCommandEventArgs e)
{
if
(e.CommandName ==
"copyRow"
)
// Check for CommandName
GridDataItem item = (GridDataItem)e.Item;
string
value1 = item[
"ColumnUniqueName1"
].Text;
value2 = item[
"ColumnUniqueName2"
// Create new row and add to DataTable which is DataSource of second grid
}