Hello,
It seems like in your second page jqGrid java script files are not loaded.
Regards
Tony
Hello,
According to your code, this field should not contain “$” as prefix, since you set a prefix to be empty string.
Also the conversion should be done automatically if you use the build in formatters, so please look at your code again.
Best Regards
Tony
Hello,
Thanks.
Also could you please provide a link to the problem?
This is a second post with similar issue.
I personally think that there are some css things that do this or some other plugins.
A link to the problem is kindly appreciated.
Thanks
Best Regards
Tony
Hello,
Very interesting.
I never try this, but you can use the onSortCol event not to stop the sorting, but rather to change the sorttype of the column, something like this:
onSortCol : function(name, iCol, sortOrder) {
if(name=='myname') {
if(some_condition) {
$(this).jqGrid('setColProp','name',{sorttype:'int'});
} else {
$(this).jqGrid('setColProp','name',{sorttype:'text'});
}
}
}
Regards
Tony
Hello,
Could you please provide a link to the problem?
Regards
Tony
Hello,
You will need to configure the jsonReader for the subgrid in the right way. They is little diffrent for the
Look here
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:subgrid#properties
Try
jsonReader : {
Hello,
Thank you for the investigations and recommendations.
I think that there will be a long disscusion on should we have id or not, should we have on every DB table
uniquie id or not. All these are up to developer and for the concrete project.
jqGrid actually have a lot of features and and you actually can not care about the ids.
If the id is not set or can not be found we use a counter.
I think that you can use the following code from jqGrid
Hello,
I think yes.The same can be seen into the demo
Best Regards
Tony
Hello,
Thanks. Done. Also I have do these in saveCell too. It really have sense.
Thank you again
Tony
Hello Klaus,
Thanks for this. I will investigate the problems.
Also in the last dev in GitHub I introduced a new parameter scrollTimeout with default value 200.
Could you please set this value to smaller one – let say 80 or 100 and see if the problem persist?
Thank you
Regards
Tony
Hello,
Please look carfully in the same page how to do this. There is example
Hello,
Thanks. This is a bug in the xml reader.
Fixed. Will publish the fix late this day in the GitHub
Best Regards
Tony
Hello,
try with colModel and not colmodel – Javascript is case sensitive
Regards
Tony
Hello,
Currently we do not have a progress on this.
regards
Tony
Hello,
Yes this is true. To achive the desired result you should write your custom formatter.
In the custom formatter you have all the data from the row.
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top