Wow!
Not sure what this happen at our end. The problem was more deeper.
Please download from github the new fix and let us know.
Thank you
Kind Regards,
Will
Guriddo Support Team
Hello,
We checked and there is no problem in our test case.
Do you have update the grid css file again with the javascript one?
Which CCS framework is used. Any example will help us.
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
If I understand right the problem you need to add a empty string in order to search on all fields of the select..
You can look at this example in our demo
In setSelect command there is a parameter to add custom strings again with those from the db like this:
|
1 2 |
... $grid->setSelect("ShipCity", "SELECT DISTINCT ShipCity, ShipCity AS CityName FROM orders ORDER BY 2", false, false, true, array(""=>"All")); |
More you can getr from the API here
Kind Regards
Will
Guriddo Support Team
Hello,
Thank you for the bug report. The problem is localized and fixed.
You can grab the code from GitHub and test it.
Please let us know if the problem is fixed.
Kind Regards,
Will
Guriddo Support Team
Hello,
Sorry that I do not understand your description. I have some notes and questions.
1 You need to load only jqGrid.php file and not both jqGrid and jqGridRender. This is true since we use auto loading module.
2. In your picture I see a that a search tool bar method is used, but in your code I do not see any command which activates this search toolbar method. My question is – from where and how you define this search toolbar feature in your grid?
3. Did you have look at the console for the response?
If you get the whole html page this means that you have defined your grid in place when it is called when it is created again.
If possible try to make the grid definition in separate file and include it it in your script.
It is important to note that after the grid is created it call the page set in setUrl to get its data with different parameters – so I think that this is the problem in your code.
Kind Regards,
Will
Guriddo Support Team
Hello,
Glad to hear that the problem is solved.
One possible reason that can cause this problem is a white space in the file.
Kind Regards,
Will
Guriddo Support Team
Hello,
To get another period of testing, please re download the trial from our download page
Kind Regards,
Will
Guriddo Support Team
Hello,
There is not such thing on my code, what you’re seeing here is exactly what I currently have in my class
I’m not sure that this is true, since you have a ToolbarSearch mode which I do not see in your code.
Please check your code again!
Kind Regards,
Will
Guriddo Support Team
Hello,
This is strange. This message is lunched in the error ajax function.
This mean the the request is something wrong.
Could you please look in your browser console (Chrome or FireFox) the status of the request?
You can look more detailed for the error in the console and the response of the request.
Kind Regards,
Will
Guriddo Support Team
Hello,
Everything is described in our support page
Look at Direct contact
Kind Regards
Will
Guriddo Support Team
Hello,
I don’t think this is something special.
The idea is to use your own ajax. In this ajax you will send the id of the row to be updated. In the success function you can either modify your response or use the one send from server (depending on your server code). Here you can use setRowData method to update the row.
The code can look something like:
|
1 2 3 4 5 6 7 8 9 10 11 12 |
function updateRow( id ) { if(id) { $.ajax({ url : "updateurl" data : {roid : id ...}, dataType : 'json', success : function( data, status, xhr ) { // suppose the data is redy to be used in setRowData $("#grid").jqGrid('setRowData', id, data); } }); } |
Kind Regards,
Will
Guriddo Support Team
Hello,
Can you please send us a test case demonstrating the problem ?
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
You know very well, that with such kind of description we are unable to solve the problem.
Please provide code with test data in order to resolve the problem.
Kind Regards,
Will
Guriddo Support Team
Hello,
Please find and remove (or comment) any echo or print_r command which are connected to jqGrid script.
We are close.
Kind Regards
Will
Guriddo Support Team
What is the error reported?
Please show us the text reported as error!
Maybe you may need to disable debugging where you set it somewhere?
$grid->debug = false; // this option by default is false
Please check this option, or
set
$grid->logtofile = true
and make your directory writtable by the script.
Regards
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top