Hello,
You may need to look at editrules option edithidden. More information you can find here
Kind Regards,
Will
Guriddo Support Team
Hello,
I understand. When load state is called we build the grid, but we do not call it with the standard load data functions again, since there are a lot of parameters that should be take in account which make the task very complex.
Instead of this we save the whole table as it was in the grid and put it direct after the grid is created (loaded). This mean that load completed is run, but actually there is no data – it is inserted in the grid after this.
In order to get the ids after the load state you will need to call it after the loadState function (with little delay maybe). This will act as loadComplete in this case.
Hope I explain it fine.
Kind Regards,
Will
Guriddo Support Team
Hello,
You will need to understand that formatter is a JavaScript function and the formatting is builded on the client side, while exporting is a job which is builded on server and we send the excel (or xml) file that the server has build. The formating in this case depend on the excel local settings. We only determine the basic fields – numeric, string and date.
We will try in the future to equal the formatting, but it will be done only when the PHP Excel lib is used.
Kind Regards,
Will
Guriddo Support Team
Hello,
Which demo you see? Do you see this one ?
Can you please explain in detail what you mean exactly?
Thank you.
Kind Regards,
Will
P.S. Sorry I mean this demo (since it is under PHP section)
Guriddo Support Team
Hello,
Can you please post a test case (or send it to support at guriddo dot net) and describe the steps you do?
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thank you for the questions.
Now from the beginning.
Shortly – if the length of colModel in select command does not equal to the column data record set either from select or export command we use the native names from recorde set.
It seems that in your case you use the the select and export command have the same length (fields)
Only in this case the hidden property is used in export command
The possible solution to your questions is:
Use only SelectCommand with all fields needed for the grid and export.
For the normal grid use setColProperty to hide desired fields and set the labels for the headers.
Now after the last setting of setColPropery do
|
1 2 3 4 5 6 7 |
if($gird->oper == 'excel || $grid->oper == 'csv') { $grid->setCoProperty("Myfield", array("hidden"=>false, "label"=>"Mylabel")); // do this for other fields that are hidden and you want to show them ... } |
Hope you understand the point.
Please let us know if you have resolved your requierments.
Kind Regards,
Will
Guriddo Support Team
Hello,
Thanks we will check this when grouping is on and adodb is used.
Kind Regards,
Will
Guriddo Support Team
Hello,
Your header contain call multiple times the same files which will cause a problems.
Secondly you call first jqGrid.min.js file which contain all the modules, but after this you call grid modules, which are by default included in the min files.
I can not see the reference to jqgrid CSS and jquery ui CSS file which are important too.
I highly recommend you to download our demo from here and see exactly what modules and CSS files are needed.
Alternatively you can look at the online demo here.
Please let us know if you have resolved the problem.
Kind Regards,
Will
P.S. When using jqGrid min file be a sure that all modules are included- i.e to be a sure you can use the one from the downloaded demo.
Guriddo Support Team
Hello,
Can you please explain in detail what you mean with this:
Even a null value in column when export excel, make column shift left.
Kind Regards,
Will
Guriddo Support Team
Hello,
You should receive the update yestarday.
In order to use case insensitive searching please look at this blog post.
Moreover we have fixed the export to excel when a adodb and grouping are used.
Please let us know if the problems are fixed for you.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
You will need to use the grid option storeNavOptions set totrue.
Please look at this forum post here
Kind Regards,
Will
Guriddo Support Team
Hello Kris,
We think that this is a very useful in applications . We began to prepare a online example.
Please check our Knowledge base .
We hope it will be ready for tomorrow.
Kind Regards,
Will
Guriddo Support Team
Hello,
We have found and fixed the problem. You will be updated next week.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
We have fixed the problem.
When using the sources from GitHub, please do not forget to update the CSS files too. We have fixed another problem.
Please let us know if it is fixed for you.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Can you please post your full jqGrid setup?
It is correct to call the groupingGroupBy method when a new row , but the problem is the fact, that when you insert the row, it is inserted locally (addRowData) and not in the server. Calling grouping by method reloads the grid and its data from the server
Solutions:
When using addRowData do not forget to set key:true in coll model which will add as unique id for the grid.
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top