Hello,
If the problem persist only on lapton when using only Chrome I personally think that this is not a jQgrid proble.
It is very difficult to find such kind of problems.
Kind Regards
Hello,
Try with ajax options reader which is the four parameter
jQuery(“#grid”).jqGrid('jqPivot','data.json', pivotOpt, gridOpt,
Hello,
This code is wrong:
Hello,
In this case I recommend you to make a link to the problem or post (or send me) the full source code of the problem.
Regards
Hello,
You can not create a grid without id. The id is requierment.
Regards
Hello,
Please upgrade your language file to the latest. It seems you do not have upgrade it.
Let us know if this fixes the problem.
Regards
Hello,
Currently there is no such button on the search form.
As for the custom form you can make a button in the page and make it so that when the user click on it to save the curren filter.
You my ask for the name to be saved and then save
var filters =[];
$(“#mybutton”).click(function(){
// ask the user to enter a short name let say
var currentname = 'test1';
// get the filter
var currentfilter = $(“#grid”).jqGrid('getGridParam','postData').filters;
// push it into array
filters[currentname] =
Hello,
Not sure if this will help, but maybe you may write a javascript which simulates enter key in order to make this work.
Regards
Hello,
Glad to help.
Regards
Hello,
Thanks for letting us know about this.
Kind Regards
Tony
Hello,
By default search on Enter is true and for me is difficult to tell you why is this happen.
You can try to buld the toolbar search immediate after the grid is created
Hello,
This is possible and requiere a little programing effort to make this happen.
The search rules are a parameter in the grid postData and this parameter is named filters.
Every time the user perform a serach you can save the filter using
var currentfilter = $(“#grid”).jqGrid('getGridParam','postData').filters;
this filter can be saved depending on your needs and later you can invokethe serech this way
$(“#grid”).jqGrid('setGridParam',{postData: { filters : currentfilter }, search:true });
$(“#grid”).trigger(“reloadGrid”);
Hope this help
Regards
Hello,
You can try to use setColProp
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top