I'm using Bootstrap 3 and I needed this to correct that same issue. The main problem until now with Bootstrap 3 is the “box-sizing:
It is a easy fix to the code.
Line 6166 jquery.jqgrid.src.js:
ruleOperatorSelect.bind('change',function() {
rule.op = $(ruleOperatorSelect).val();
trpar = $(this).parents(“tr:first”);
var rd = $(“.input-elm”,trpar)[0];
if (rule.op === “nu” || rule.op === “nn”) { // disable for operator “is null” and “is not null”
rule.data = “”;
if(rd.tagName.toUpperCase() != 'SELECT')
Did you check the output from the server? I don't think that datefmt accepts de time… at least when you use the validations for date.
How can you use datefmt with time? I have trying and always getting an error when trying to save when creating a new record.
Can you post your colmodel code please?
Try setting a geral font size because Jquery UI uses EM has font size.
Did some debuging and after reading the code I realise that doing a reloadAfterSubmit:true in the delOptions of the pager would work for what I wanted.
What happens is that the AjaxCall for the Delete completes after the removing of the row in the Grid.
Since I wasn't reloading the grid, the GridComplete was being fired in the delRowData (only removes the row visualy). After that the complete of the Ajax would finish and since I didn't set to reload after delete, it would then clean the selection made.
if(rp_ge.reloadAfterSubmit && $t.p.datatype != “local”) {
$($t).trigger(“reloadGrid”);
} else {
var toarr = [];
toarr = postdata.split(“,”);
if($t.p.treeGrid===true){
try {$($t).jqGrid(“delTreeNode”,toarr[0]);} catch(e){}
} else {
for(var i=0;i<toarr.length;i++) {
$($t).jqGrid(“delRowData”,toarr);
}
}
$t.p.selrow = null;
$t.p.selarrrow = [];
}
Tony,
Is it really needed this reset (in delGridRow)
I'm having the same problem with version 4 of JQGrid.
What I found was that after a trigger(“reloadGrid”);
Tony,
I'm talking about
I have the lastest version on GitHub (after reading http://www.trirand.com/blog/?p…..ialog-box/ ) and it still not ok.
The screenshot was taken with yesterday version, and I just downloaded the todays version and still have the same problem with {multipleSearch : true}.
For simple search is ok.
Thanks Tony.
Try this:
I'm having the same problem with the layout in Multisearch with version 4 of JQGrid. If I change to 3.8 the problem goes away.

Any one have a solution for this?
Thanks. I thought that since there is no pagination on TreeGrids the RowNum wouldn't be necessary.
The line 1272 of grid.base.js:
if(ir==rn) { break; }
Should have in account if is a TreeGrid, and if yes, shouldn't break.
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top