Pergunta

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!

Foi útil?

Solução

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.

Outras dicas

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

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top