Hello,
There is API for this
In the nonminified version open jquery.searchFilter.js and you will see how the author of this plugin describe this call.
For your information the id of the search is a combination of “fbox_” + the id of the grid
Regards
Tony
Hello,
The purpose of this is to have file upload using other plugins.
Sorry no exmple on this.
Regards
Tony
Hello,
Thanks. We will definitley check this. Seems to be a problem with jQuery UI.
Regards
Tony
Hello,
Sorry this is discussed here, for now it is not planed to be changed. We should apply some huge logic.
Regards
Tony
Hello,
When it is in github it means that it will be in the next release.
Regards
Tony
Hello,
Currently no, but you cam use getRowdata without parameter – in this case you will have all the data in array and you can easy export it to what you want.
Regards
Tony
Hello,
Check your server side code
Regards
Tony
Hello,
Sorry I do not understand what you mean.
Regards
Tony
Hello,
Just do this into the demo and everthing is working ok.
The problem is maybe that you use ajax calls to load the data. In this case I sugest you to call gridDnD with setTimeout function, something like
// wait untill all data is loaded and then call drag and drop
setTimeout(function(){
jQuery(“#barre_nav1″).jqGrid('gridDnD',{connectWith:'#barre_nav2,#barre_nav3'});
jQuery(“#barre_nav2″).jqGrid('gridDnD',{connectWith:'#barre_nav1,#barre_nav3'});
Query(“#barre_nav3″).jqGrid('gridDnD',{connectWith:'#barre_nav1,#barre_nav2'});
},800)
Regards
Tony
Hello,
Evrething we do is to use jQuery ajax where a error function is defined, something like
$.ajax({
…
complete:function(…) {
},
error:function(..)
{
}
});
Try to see with jQuery ajax in 302 error is lunched
Also more info and how the code looks will be helpfull
Regards
Tony
Hello,
var gr = jQuery(“#htmlTable2″).jqGrid('getGridParam','sellarrow');
will return the selected rows when you are in multiselect mode.
You can use getRowData without parameter to get all the data rows from the grid and then convert this array
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods
in a way which can be posted to the server
Regards
Tony
Hello,
Currently this will not work, since the format function expect to have separators. Sorry.
You can resolve the issue applying custom formatter:
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:custom_formatter
Best regards
Tony
Hello,
Be a sure that the id's are uniquie.
Regards
Tony
Hello,
When we save the data locally as in your case this have sense, but when we save the data with ajax it is difficult to determine what to return since the method is executed and the ajax call continnue his execution and we do not know what to return.
I recommen you to put
callSaveList in aftersavefunc in order to resolve this problem
Best Regards
Tony
Hello,
Do you perform the search on the server?
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top