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
Is there a way to access/set the oncheckchanged event in an autogenerated checkbox column and have it post back?
For documentation purposes this is what I ended up with.
Private
Sub
handleCheckBoxToggle(sender
As
Object
, e
EventArgs)
'Do checkbox stuff
End
rgHotJobs_ItemDataBound(sender
GridItemEventArgs)
Handles
rgHotJobs.ItemCreated
If
TypeOf
e.Item
Is
GridDataItem
Then
Dim
dataItem
GridDataItem =
DirectCast
(e.Item, GridDataItem)
d
CheckBox
d =
(dataItem(
"Ignore"
).Controls(0), CheckBox)
d.Enabled =
True
d.AutoPostBack =
AddHandler
d.CheckedChanged,
AddressOf
handleCheckBoxToggle