1
Help for ParamQuery Pro / Re: using Grid Toolbar buttons to check/uncheck a a checkbox field on a grid
« on: January 17, 2025, 09:20:13 pm »
1) There are checkNodes and unCheckNodes methods but no toggle function. Checked rows can be found out by checking chk property of rows.
if( rowData.chk ) //checked rows.
you can pass rows to be checked to checkNodes and rows to be unchecked to unCheckNodes
2) You can use either getCheckedNodes() method of Checkbox object or check chk property of individual rows to get list of checked rows.
if( rowData.chk ) //checked rows.
you can pass rows to be checked to checkNodes and rows to be unchecked to unCheckNodes
2) You can use either getCheckedNodes() method of Checkbox object or check chk property of individual rows to get list of checked rows.