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
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
"server"
. . >
MasterTableView
ClientDataKeyNames
"ID"
>
Columns
. . . . . . .
telerik:GridButtonColumn
CommandName
"DeleteSelected"
UniqueName
Text
"Delete"
</
ClientSettings
ClientEvents
OnCommand
"OnCommand"
/>
<script type=
"text/javascript"
function
OnCommand(sender, args) {
if
(args.get_commandName() ==
) {
var
itemIndex = args.get_commandArgument();
rowID = sender.get_masterTableView().get_dataItems()[itemIndex].getDataKeyValue(
);
}
</script>