Hello,
Because we can not reproduce the problem, can you please prepare a separate example files which demostates the problem and send it to support at guriddo dot net.
Thank you
Will
Guriddo Support Team
Hello,
Look here
See pagerpos parameter. The values can be center, left, right and it is a grid option (setGridOptions method).
Kind Regards,
Will
Guriddo Support Team
Hello,
Are you using the demo version or obfuscated one?
There is a upgrade guide in the downloaded package.
We use a autoloader and actually you will need to load only jqGrid(.php) class (file).
Please look at the demos here and see how to use it.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thanks. I will let you know when we are ready with this.
Kind Regards,
Will
Guriddo Support Team
Hello,
To format a code you will need to switch to Text mode. Select a text and push the code button.
In visual tab this does not function correct. It is a bug in the software we use – Sorry.
We think we have isolated a problem with pdf export and hope the fix will be availabe in the next release.
Because you use a php setting witch do this:
1 2 |
ini_set('display_errors', 'on'); error_reporting(E_ALL); |
If you comment these lines your code will work with the new tcpdf.
The problem is in our code and is common and is similar like this
The solution is described into the link
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry, but this example we can not reproduce the problem.
Usually this problem is happen if the parameter – pagerpos is set to left.
In this case the grid set the width of the column on which the pager buttons are set.
By example if the pagerpos is set to left we calculate the width of the left column
This of course is a problem.
We have put this in our bug list. Hope It will be fixed in the next release.
Thanks for reporting and have a nice weekends.
Kind Regards,
Will
Guriddo Support Team
Hello,
Please look at this demo here.
There are two ways. All of them work as expected except the first one which doers not set the icon on the sorted column.
Kind Regards,
Will
Guriddo Support Team
Hello,
The investigation you have is correct: using settimeout is needed because thereis a need of time to load the data and put it to the grid. This can be one millisecond or 10 seconds depending on your network connection and etc.
With other words – this is fine.
In order to do this without using two time trigger(“reloadGrid”) I can recommend You to put all the code in one reloading like this:
1 2 |
$("#list").setGridParam({datatype:'json', page:1, sortname: 'e_lname', sortorder: 'asc'}).trigger('reloadGrid'); |
Kind Regards,
Will
Guriddo Support Team
Hello,
Just for the case – can you please post a simple test case which demonstrates the problem.
We look seriously on every bug connected with the grid.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for the posting.
In the downloaded package there are upgrade notes, so you can read them.
Can you please send us a test case or copy/paste it here without any additional tags?
We think we have found the problem, but we need to test it with your case.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
The problem we see here is that the navGrid is called outside document ready which another scope.
You will need to put the call of navGrid inside the document ready like this:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
... $(document).ready(function () { $("#quest_grid").jqGrid({ url: "myurl", datatype: "json", colNames: ['№', 'Text'], ... }); // end jqGrid $("#quest_grid").jqGrid( 'navGrid', '#pagernav', { edit: true, //all this buttons are missing!!! add: true, del: true, search: true, refresh: true, view:true }, //options ... }); // end navGrid }); // end document ready ... |
Kind Regards,
Will
Guriddo Support Team
Hello,
Are you sure that your are in the right forum?
Which popup? From where comes this popup?
I’m not sure that this is connected with jqGrid.
Kind Regards,
Bojan
Guriddo Support Team
Hello,
Where you want to add a reload button – in the detail content or ouside grid?
Regards
Guriddo Support Team
Hello,
Unfortunately there is no easy way to add a horizontal scroll bar at top of the grid.
It require a lot of changes in the structure.
Kind Regards,
Bojan
Guriddo Support Team
Hello,
Everything what you need to do is to post a test case. In your case with simple description we can not help.
We need to know a lot of things in order to get help.
Kind Regards,
Bojan
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top