BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<button onclick="clickme()" style="margin-bottom:10px">Checked Items</button> <script type="text/javascript"> function clickme() { var treeObj = $("#TreeGridContainer").ejTreeGrid("instance"), //to get the checked items collection checkedItems = treeObj.model.selectedItems; alert(checkedItems.length); } </script> |
<button onclick="uncheck()">To Uncheck</button> function uncheck() { var treeObj = $("#TreeGridContainer").ejTreeGrid("instance"); //to get the checked items collection treeObj.selectAllRows(false); } |