Hello,
Currently I do not see that this is possible, but who knows …
Regards
Tony
Hello,
Use beforeShowForm for edit and in edit show it in add hide it.
Suppose you have a column with name defined in colModel as myname, the for edit
beforeShowForm : function(formid) {
$(“#tr_myname”,formid).show();
}
for add
beforeShowForm : function(formid) {
$(“#tr_myname”,formid).hide();
}
Best Regards
Tony
Hello,
If this work and there is no problems, then I will say it is good.
Regards
Tony
Hello,
Try to play with z-index of the main menu and positions, also if you provide me a link maybe I will do more
Hello,
Everthing is ok – javascript interpret 0 as false, so in your script you must perform some additional checking for this
if (!jQuery(“#list1″).getInd(idz,false) )
something like
if ( jQuery(“#list1″).getInd(idz,false) !== false ) {
Regards
Tony
Hello,
Thank you. The bug is already fixed:
http://github.com/tonytomov/jqGrid/commit/19a10833262113f754bed24495625cfb6af1f385
Regards
Tony
Hello,
Try to use the appropriate method for the subgrid
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:subgrid#methods
I recommend you to use expandSubgridRow
Regards
Tony
Hello,
It is up to developer how to do this. It is not a bug and the code in documentation is the code used into the demo
Regards
Tony
Hello
colModel: [
{ name: 'id', index: 'id', width: 55 },
{ name: 'name', index: 'name', width: 100 },
{ name: 'level', index: 'level', width: 80 }, <===EROROR
],
Regards
Tony
Hello
Use setGridParam aplied to postData
Regards
Tony
Hello,
Try to use the onSortCol event
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:events
Regards
Tony
Hello,
Could you please post the entrie grid configuration including jsonReader
Regards
Tony
Hello,
This is out of jqGrid forum. Imagine what will say people that use ASP or JSP ….
I'm not expert of these. You have the api, you know what is posted, then get the post and do it your way with PHP
Regards
Tony
Hello,
The problem is discussed well in this forum. Local paginationis not supported. Will be in the upcomming 3.7 release.
Regards
Tony
Hello,
As described here –
http://www.trirand.com/jqgridwiki/doku.php?id=wiki:jquery_ui_intro
you must load the jQuery UI library
Regards
Tony
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top