You can change the url parameters to what you want.
Use a setUrl method again with trigger(‘reloadGrid’) to do that.
The page and etc parameters are passed additionally to the url – i.e if you have mypage.php?param1=dd¶m2=aa the other are passed again with these.
If you have array, then you can serialize the array to url parameters and pass them to the setUrl method.
As for the second problem:
You can add a logic to save row when on select row is raised.
In the example page see:
Row editing -> Input Types
Here you can do something like:
onSelectRow: function(id){ if(id && id!==lastsel2){ jQuery('#rowed5').saveRow(lastsel2); jQuery('#rowed5').editRow(id,true); lastsel2=id; }
Hi,
Have downloaded the ddAccordion and have placed it in my demos. All work ok. Since I can not reproduce the problem it will be very good (if possible of course) to give me a link to this.
Hi,
First try to isolate the problem.
1. Does jqGrid work without DDAccordeon
2. As I see you call is jQuery(‘table’).jqGrid(options). Is ‘table’ the id of the table or just table
Hi Wouter,
I really found some strange behavior on IE6 when clicking a row under some conditions. It is connected with grid as subgrid , but the reason is the same. Today I will what I can do 🙂