Hello,
can you please post a grid setup and a test data in order to see what is happen?
You can also use jsfiddle to illustrate the problem.
Thank you.
Kind Regards
Will
Guriddo Support Team
Hello,
The options is named itemLength . Try this
|
1 2 3 4 5 6 7 8 9 10 |
$grid->setAutocomplete("TRUCKING","#TRUCKINGID","select cc.nama || ' | ' || ss.dari || ' | ' || ss.tujuan || ' | ' || ss.tipe || ' | ' || cast (ss.tarif as integer) , cc.nama || ' | ' || ss.dari || ' | ' || ss.tujuan || ' | ' || ss.tipe || ' | ' || cast (ss.tarif as integer) , ss.tarifsupid from customer cc inner join tarif_supplier ss on cc.customerid = ss.customerid where cc.tipe = 'TRUCKING' and ss.status = 'Aktif' and ( cc.nama LIKE upper( ? ) or ss.tujuan LIKE upper( ? )) ORDER BY cc.nama ", array("itemLength"=>20), true, true); |
or what you value want.
Kind Regards,
Will
Guriddo Support Team
Hello,
When upgardeing from 4.7 to 4.8 or 5x versions you sho8ld read the upgrade notes – please, read this blog post
Kind Regards
Will
Guriddo Support Team
Hello,
When using external plugin like selectmenu you will need to apply a refresh method after every change of the items.
Here is link on how to apply using selectmenu.
You may need to read all the posts.
Kind Regards,
Will
Guriddo Support Team
Hello,
We are glad to hear that everything is working as expected.
Thank you for the code posted.
The new release will be published very soon.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
The fix is in GitHub
You can just download the updated css and continue use the product without to wait for the new release.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you very much for the test case.
|
1 2 3 |
.ui-dialog { z-index: 1000; } |
This is the same as datepicker. The dialog have z-index to by default 100 if it is not modal.
Kind Regards,
Will
Guriddo Support Team
Hello Mike,
Thank you.
Unfortunately this is not supported. Yes this have sense.
We will see if this can be implemented and replay to you at beginning of the next week.
Kind Regards,
Will
Guriddo Support Team
Hello,
1. This is correct. You will need to set a higher z-index of datepicker
2. It is difficult to reproduce this problem. Can you please send us a link to the problem or use jsfiddle to post your test case?
3. As of version 5 the look of jqGrid was changed. Most components are done bigger in order to to look better on mobile devices. As you alone see you can get this back setting padding to lower pixels.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you very much – we have correct the error.
Kind Regards,
Will
Guriddo Support Team
Hello,
The multiselect is a external plugin and you should upfdate it manually.
Loading the filtered data and trigerring the grid does not refresh the data on filter toolbar.
Especially for your case we have created the new method called refreshFilterToolbar.
To this method you can pass the filters as string or as object.
You can call it after the loading the and triggering the grid.
Note that you should manually refersh the multiselect plugin after this operation.
Download the the last build from github and replace the jqquery.jqGrid.js file.
the code can look like this
|
1 2 3 4 5 6 7 8 9 10 11 12 13 |
var obj = JSON.parse(data); jQuery('#grid').jqGrid('setGridParam',{postData: obj}).trigger("reloadGrid"); jQuery('#grid').jqGrid('refreshFilterToolbar', {filters: obj.filters}); // finally refresh the multiselect plugin var elem = $("#gs_CustomerID"); // this is the element elem.multiselect('refresh'); elem.siblings('button.ui-multiselect').css({ width: "100%", marginTop: "1px", marginBottom: "1px", paddingTop: "3px" }) |
Hope this helps
Kind Regards
Will
Guriddo Support Team
Hello,
Should we think that the grid is already constructed and on a existing grid you load the the stored filters and try to apply them?
Also I suppose that a toolbar searching is used.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for sharing this solution.
Glad to see that publishing code is working fine.
Kind Regards,
Will
Guriddo Support Team
Hello,
jquery.jqGrid.min.js or jquery.jqGrid.js is fine.
Please, let us know about the result.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hell,
Unfortunately this feature is not supported at the moment.
This require to post the grid options back to server when exporting.
This in most cases is not desired. The reason for this is that on servers where only GET operation is used this can not work because of the big data posted to server
Instead of this we look at this request and we will try to include it in the next release.
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top