Hello,
404 error means the the requested url is not found .
Please be a sure you have all the needed modules and you have pointed to a valid file in setUrl option.
This server specific error and we can not go too much with this.
Could yo please look in the console what is exactly the error returned from the server.
Kind Regards,
Will
Guriddo Support Team
Hello,
Please send it to support at guriddo dot net
Thank you.
Kind Regards,
Will
Guriddo Support Team
Hello,
We have added this feature in github.
Please check if it is ok for you application.
Kind Regards,
Will
Guriddo Support Team
Hello,
Unfortunately this is not currently possible, but it is a good idea. Will will try to add this feature in the next days. You will be notified.
Kind Regards,
Will
Guriddo Support Team
Hello,
In order to solve the problem, we need the full jqGrid setup again with all the methods called after the initial setup.
The best will be if you provide a link to the problem.
Also it is unknown which jQuery and jQuery UI versions are used.
The column chooser does not work if the column is frozen.
Wait for your response.
Kind Regards,
Will
Guriddo Support Team
Hello,
It seems we have not included the latest updated of multiselect plugin in the download.
If you use the trial version, please re download it and replace the ui.multiselect.js file from the latest download.
If you are a licensed user, please re download the 5.0 version and replace the same file.
Please let us know if the problem is fixed. After replacing the file do not forget to clear the browser cache.
Sorry for this mistake.
Kind Regards,
Will
Guriddo Support Team
Hello,
If you selection is based on row selection – i.e the check box is checked/unchecked whe you select any column, then you can use onSelectRow and use the second parameter status:
|
1 2 3 4 5 6 7 8 9 10 11 12 |
...jqGrid({ ... multiselect: true, onSelectRow : function( id, status, event) { if(status) { // checked // do something } else { //unchecked // do something } }, ... }); |
if your selection is based only on when the checkbox is click, then you can use onCellSelect
|
1 2 3 4 5 6 7 8 9 |
onCellSelect : function( ri, ci, html, e) { if( $(e.target).hasClass('cbox')) { if($(e.target).is(":checked") ) { // do something } else { // do something } } } |
Kind Regards,
Will
Guriddo Support Team
Hello,
There is more than one solution.
1. Globally using ajaxError
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
/** * This monitors all AJAX calls that have an error response. If a user's * session has expired, then the system will return a 401 status, * "Unauthorized", which will trigger this listener and so prompt the user if * they'd like to be redirected to the login page. */ $(document).ajaxError(function(event, jqxhr, settings, exception) { if (exception == 'Unauthorized') { // Prompt user if they'd like to be redirected to the login page var redirect = confirm("You're session has expired. Would you like to be redirected to the login page?"); // If the answer is yes if (redirect) { // Redirect window.location = 'login.php'; } } }); |
2. Using loadError jqGrid event. This is the sane as error event in ajax options
in grid options
|
1 2 3 4 5 6 7 8 |
loadError : function ( xhr, status ,error ) { // the same as above if( error == 'Unauthorized' { ... window.location = 'login.php } } |
Use setGridEvent php to define this error in grid options
Regards,
Will
Guriddo Support Team
Hello,
Not sure what you do, but here is your example.
The only difference is that we do not perform where clause in detail grid, so onSelect row will return every time the same record set.
Kind Regards,
Will
Guriddo Support Team
Hello,
You set readouttime to be a primary key which will be used as id of the rows, but the id can not contain spaces. Yours id contain spaces.
I recommend you to use another filed as primary key without spaces or you can build uniquie keys when you set the array.
Kind Regards,
Will
Guriddo Support Team
Hello,
Please verify the correct path to the files and if they are written correctly.
In Chrome/FireFox you can use developer Tools/FireBug to see if the files are loaded correct.
Kind Regards,
Will
Guriddo Support Team
Hello,
If you post your full code or send us a link to the problem we can help on this – all other assumptions will not help.
The code I refer should replace your approach and I do not refer reloadOnExpand option.
Kind Regards,
Will
Guriddo Support Team
Hello,
In the way you represent the problem it is very difficult to determine the problem.
Please send us a link to the problem or the full code you use (including head and body section)
Kind Regards,
Will
Guriddo Support Team
Hello,
The problem is in the response.
The key values in the response should not contain spaces. Your response contain such one.
By example you have:
“Pres ACM”:”2.83″,”Pres INC”:”0″
This should be converted to:
“PresACM”:”2.83″,”PresINC”:”0″
or
“Pres_ACM”:”2.83″,”Pres_INC”:”0″
Kind Regards,
Will
Guriddo Support Team
Hello,
We think that everything right now is resolved. Yu should receive your license details.
Please let us know if you have problems with this.
Kind Regards,
Will
Guriddo Support Team
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top