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
Hi, I have a grid with a template column that's a checkbox, I want it so that when I click save i will have a javascript function to iterate through each grid row and find the rows that have checked columns.
Regards
for anyone that wants to know how:
function getCheckedCamps() { var grid = $("#grdAccountCamps"); grid.find("input:checked").closest("tr").each(function () { alert(grid.data("kendoGrid").dataItem(this).CampID); }) }
Hello Jim,
Yes, this approach is correct for retrieving the model ids of the checked rows. I am glad the issue is resolved.