Hello,
You build a grid with date field. Data field has separator “/” as per your definition. This is not allowed for the ids.
Maybe you will need to remove the “/” before building the subgrid and pass a correct string as id.
Regards
Hello,
Thanks again Oleg.
Fixed in GitHub
Regards
Tony
Hello,
If yo do not know – this way of posting does not help.
Kind Regards
Tony
Hello,
This is true and I can not confirm when it will be fixed.
Regards
Hello,
It all depend how is defined your content – i.e the value of vl in change event.
Regards
Hello,
Thanks. Will be interested for me too.
Kind Regards
Tony
Hello,
I do not think this is jqGrid problem. We use standard jQuery Ajax to do this.
Maybe the reason for this is in some server settings.
Try with pure ajax and see the result
Regards
Hello Oleg,
Thanks. Just fixed this in GitHub.
Best Regards
Tony
Hello,
The warnings are actually 2 in cell edit module only and they refer to setTimeout which is used with zero delay – i.e
setTimeout(function(){…}, 0);
Your analyzes software think that this is dangerous, but actually it is not.
I can asure you that I will set the timeout to 1 something like this.
setTimeout(function(){…}, 1);
Just fixed the code in github.
Regards
Hello,
dataUrl property can be a function. To this function we pass the id and value
try this
colModel : [
..
{
name:'name',…
dataUrl : function(rowid, value, name) { return 'myscript.php?id='+rowid; }
..
},
…
]
Regards
Hello,
You have many options.
1. Parse the data before it is edit .
2. Do not use this approach of setting the color in a cell – just use cellattr event in colModel to set color and more
Hello,
You will need to destroy and recreate the grouping again in this case. The is example in our demos on how to do this.
Regards
Hello,
Which demo? Can you please provide alink?
We have tested all our demos with Internet Explorer 11 and they seems to work fine.
Thank you
Kind Regards
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top