How to invoke the reset selection and select all in jqGrid?
Asked Answered
S

2

5

How to reset the selected rows and select all rows on external button click? i am trying to resetSelection() but not working ...

jQuery("selectAll").click(function(){ 
  jQuery('.cbox').trigger('click'); 
});

jQuery("clear").click(function(){ 
  var grid = $("#list10"); 
  grid.resetSelection(); 
  $('#cb_my_grid').click(); 

  var ids = grid.getDataIDs(); 
  for (var i=0, il=ids.length; i < il; i++ ) 
    grid.setSelection(ids[i], false); 
});
Sharpfreeze answered 26/8, 2010 at 0:44 Comment(3)
You should post the code example which not work.Stound
jQuery("selectAll").click(function(){ jQuery('.cbox').trigger('click'); }); jQuery("clear").click(function(){ var grid = $("#list10"); grid.resetSelection(); $('#cb_my_grid').click(); var ids = grid.getDataIDs(); for (var i=0, il=ids.length; i < il; i++ ) grid.setSelection(ids[i], false); });Sharpfreeze
may be this link help cbabhusal.wordpress.com/2014/09/15/…Neuro
S
13

The main reason why your code is not work is some syntax errors or wrong usage of jQuery selectors.

You don't post your HTML code, so I suppose it look like following

<input id="selectAll" type="button" value="Select All" />
<input id="clear" type="button" value="Clear Selection" />
<table id="list10"></table>
<div id="pager"></div>

The corresponding JavaSript code should be like following:

var grid = $("#list10");
$("#selectAll").click(function(){
    grid.jqGrid('resetSelection');
    var ids = grid.getDataIDs();
    for (var i=0, il=ids.length; i < il; i++) {
        grid.jqGrid('setSelection',ids[i], true);
    }
});

$("#clear").click(function(){
    grid.jqGrid('resetSelection');
});

A working example you can see under the Link .

Stound answered 26/8, 2010 at 17:7 Comment(0)
C
2

For those who are still encountering this here is a solution the works for me:

//call resetSelection here

$('#cb_grid_id')
    .attr('checked','checked')
    .trigger('click')
    .attr('checked','checked');
Cabbageworm answered 11/6, 2012 at 15:22 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.