문제

I can I select all rows on button click ...lets say I have a button call Select All ..When I click on that button it needs to select all rows ....I did n't find any relevant documentation on JqGrid API ....

Any help will be appreciated.

Thanks!

도움이 되었습니까?

해결책

It seems to me that this example which I described in How to invoke the reset selection and select all in jqGrid? do what asked.

다른 팁

I use the following Code

jQuery("#toolbar").jqGrid('navButtonAdd','#toolbar_toppager',{caption:"Select All", onClickButton:function(){ 
         if($('.cbox').is(":checked")){ jQuery("#toolbar").jqGrid('resetSelection'); }else{$('.cbox').trigger('click').attr('checked', true);}
      } });

This seems to fix the issue with having to double click on the check boxes

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top