Hi
Im relatively new to jqxWidget, so this may be an easy question for most of you!
I have a toggle button at the bottom of jqxGrid (custom jQuery) which, when selected, should toggle between All, and Selected rows. Im probably using the ‘hiderowdetails’ method incorrectly, but I assumed I can just do something like
for (var ri = 0; ri < grid.jqxGrid('getdatainformation').rowscount; ri++){ if(selectedIndexes.indexOf(ri) < 0){ grid.jqxGrid('hiderowdetails', ri); //console.log("Row (apparently) hidden"); } }
Any help greatly appreciated.