Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
<
telerik:RadGrid
ID
=
"RadGrid1"
runat
"server"
OnBatchEditCommand
"RadGrid1_BatchEditCommand"
>
MasterTableView
EditMode
"Batch"
CommandItemDisplay
"Top"
DataKeyNames
"ID"
BatchEditingSettings
OpenEditingEvent
"Click"
/>
protected
void
RadGrid1_BatchEditCommand(
object
sender, GridBatchEditingEventArgs e)
{
foreach
(GridBatchEditingCommand command
in
e.Commands)
if
((command.Type == GridBatchEditingCommandType.Update))
Hashtable newValues = command.NewValues;
Hashtable oldValues = command.OldValues;
string
ID = newValues[
].ToString();
Name = newValues[
"Name"
try
//Code to Update
}
catch
(Exception ex)
// Exception Message