Hello,
The type of column is detected automatically from the script (based on the database table properties). There was some small problems with numeric type in true excel export.
Which Guriddo PHP version is used and which type of excel export is used?
It is possible to send us a script and a demo table definition demonstrating the problem?
Thank you.
Kind Regards
Will
Guriddo Support Team
Hello,
Hope you explain how you use this. Maybe you can use beforeSelectRow event to stop (if you return false see docs) deselection of a row.
Thanks for translation. We will try to update the language file.
Kind Regards,
Will
Guriddo Support Team
Hello,
Officially this function is not supported and is not included in the trial download.The function is available as add-on in GitHub
Kind Regards
Will
Guriddo Support Team
Hello,
Unfortunately the title is not configurable.
You recommendation have sense and we will implement it in the next release (September/October, 2016)
Kind Regards,
Will
Guriddo Support Team
Hello,
The problem is that initially (when the xml file is used) , the rowObject is a XML node.
After this load we have a JSON object, since the data is converted to JSON.
To overcome this you can check for nodeType
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
function formatFctfrlink(cellvalue, options, rowObject) { if(rowObject.nodeType) { // xml present var imtbtext = $(rowObject).find('axxlink').text(); if(imtbtext.length == 0){ return cellvalue; } else{ return ""+ cellvalue +""; } } else { // JSON object // now rowObject is a object where you can check if the elemenyt axxlink exist if( rowObject.hasOwnProperty('axxlink') { // you can check this other way // do something } else {...} } } |
Kind Regards,
Will
Guriddo Support Team
Hello,
As I said, you will need to use some Server side logic to get the needed subset of records for the subgrid.
Kind Regards
Will
Guriddo Support Team
Hello,
If you use setSelection, the you know which row to apply this method.
The following will not toggle;
|
1 2 3 4 5 6 7 |
var row_to_be_used_in_selection = 'something'; var sr = $("#grid").jqGrid('getGridParam','selrow'); if( row_to_be_used_in_selection !== sr) { $("#grid").jqGrid('setSelection', row_to_be_used_in_selection); } |
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry for delay of the answer.
This does not depend on jqGrid, instead that you can color all the elements of the grid using jqgrid bootstrap css file.
If you look at the download of bootstrap css you will see, that there is a file named bootstrap-theme.css . This is a default theme. If you include this file jqGrid will look in appropriate way. With other words you can color your grid using a example of this theme, which will color all other components in your application.
Kind Regards,
Will
Guriddo Support Team
Hello,
We are not sure, that we understand the question.
Can you please explain us more detailed the problem you have?
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
Not sure what you do, but using the last version and the code provided from
stackoverflow we have prepared this demo
Kind Regards,
Will
Guriddo Support Team
Hello,
Ok. We will look at this.
Kind Regards
Will
Guriddo Support Team
Hello,
Technically this is possible, but logically not. The subgrid should get only the needed subgrid data. Asking the main file will get you all the data which will be wrong.
About the second problem: This is not a jqGrid a problem, but a way Chrome works. See here
Kind Regards,
Will
Guriddo Support Team
Hello,
Unfortunately the recreateForm works as described in version 4.6
Kind Regards,
Will
Guriddo Support Team
Hello,
I think you can use the code from the link you provided. Please let us know if you have success with this.
Kind Regards,
Will
Guriddo Support Team
Hello,
The code you post is difficult to be read. Could you please post the code using the text tab and then select the text and click on code button.
Unfortunately there is no direct method to do this and adding icon next to the search one is difficult.
I recommend you to look at colmenu options here
Another solution is to show hide tool bar search menu at all using the command:
|
1 2 3 4 |
... $("#gbox_jqGrid").find(".ui-search-toolbar").hide(); ... |
where jqGrid is the id of the grid
and use show to show it
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top