Hi,
I know what is the problem. If you look into the DDAccordion the plugin does not have any termination with ;
Since the new release added ; before the plugin maybe this resolves the problem
🙂
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.
Regards
Tony
Hi,
Does the select box work now in the new grid?
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; }
Regards
Hi,
It is true. Will be corrected.
Thanks.
Regards
Pack all the pages (if possible include everything ) and send me it to my e-mail.
You have a older version. Go in to download section and check
Last Revision of jqGrid – i.e.
http://www.trirand.com/jqgrid/js/jquery.jqGrid.js
Regards
Tony
This can be achieved only if you use jsonReader. Please check the demos or wait a two days until the docs are ready
Regards
Tony
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.
Regards
Tony
Hi,
All this is not needed. You can just use a option mtype
The call is
mtype : “POST”
The default value for this is GET
Regards
Tony
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
Regards
Tony
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 🙂
Regards
Tony
Hi,
For me all work fine in IE. Instead of that I will look again into the code.
You can look at final prevew of jqGrid here:
http://www.trirand.com/gridpreview/jqgrid.html
Regards
Hi,
Try to put in first column in colNames some data – something like this:
colNames:,
instead of
colNames:,
To remove rows manually:
var = id_s = jQuery("#table_id").getDataIDs();
for(var i = 0; i < = id_s.length; i++)
jQuery("#table_id").delRowData(id_s);
}
You can not do this way, but you can do this this way:
1. loadComplete : function () { a },...
function a () {alert(1)}
or
2. loadComplete: a,....
var a = function() {alert(1)}
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top