Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
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
}