Hello,
Yes this is possible, you will need to read the documentation.
http://www.trirand.com/jqgridwiki/doku.php
Regards
Tony
Hello,
As of 3.6.X releases you can use this which point to the grid – i.e
gridComplete : function() {
$(this).jqGrid('jqGrid_Method_here','param1','param2');
// to obtain the id (which is the same)
var gridid = $(this).attr(“id”);
}
Best Regards
Tony
Hello,
Will try to test it as soon as possible. Also I will test it with the last release.
Best Regards
Tony
HEllo,
Try with gridComplete event.
Regards
Tony
Hello,
All the dialog related functions are in grid.common.js module.
This module later will be changed , so the some functions can be overwritten as you suggest.
If you need more help, please let me know.
Best Regards
Tony
Hello Oleg,
Thank you – will be added.
Also this is valid from 3.6.4 version – if I remember right.
Best Regards
Tony
Hello,
Thanks for the link and test case.
This is something mistery. In may enviroment everething is correct using the same code with diffrent data, but in your example – yes this is a bug.
If possible could you please include the non – minified version, but the developmen one – you can use the grid loader for this purpose to load the diffrent modules.
Thank you
Best Regards
Tony
Hello,
Are you using in this case scroll:1 ?
Regards
Tony
Hello,
this is maybe what you looking for:
$.extend($.jgrid.defaults,{…});
before creating a grid 
Regards
Tony
HEllo,
Will be happy if you put here the whole page including DOCTYPE declaration and grid configuration
Best Regards
Tony
Hello,
Sorry – this is not readable for me.
Regards
Tony
Hello,
Which version is used.
Also can you please post the code for the navGrid in order to look?
Regards
Tony
Hello,
I'm not sure if this will do the job for you but there is exactley such event called beforeRequest – which is raised exactley before the request.
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:events
Also I think it is easy to do such things – if I understand right the problem:
var gridoptions = { url : “…”, rowNum : 10,…}
if(some condition) {
gridoptions.rowNum = 20;
}
$(“#mygrid”).jqGrid(gridoptions);
Best Regards
Tony
Hello,
Thanks. Fixed.
Regards
Tony
Hello,
Thanks. This is true. Will not be fixed.
In your case set the grid parameter
loadui : block
This will prevent second click from the user on the sorting column.
Best Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top