Hello,
Could you please post the rest of code where you edit the cell?
Regards
Tony
Hello,
Open the grid.css and see this settings
Hello,
It seems to be a loader problem.
Also try to include all the scripts from the jqGrid loader in the head section manually and try.
Regards
Tony
Hello,
1. Look here
http://www.trirand.com/blog/?page_id=18/bugs/setgridparam-problem/page-1
As of the release date – hope to be ready after max two weeks.
Best Regards
Tony
Hello,
Yes, the file is not uploaded. As you known uploading a file requiere diffrent approach. I put this in order to be easy use some other plugin like this one:
http://www.phpletter.com/Demo/AjaxFileUpload-Demo/
Regards
Tony
Hello,
How do you do this?
I mean do you have
var jqgridoptions = {….multiselect:false,…}
$(“#grid1”).jqGrid(jqgridoptions);
jqgridoptions.multiselect = true;
$(“#grid2”).jqGrid(jqgridoptions);
Is this the case?
If this is the case you should
//make deep copy
jqgridoptions = $.extend(true,jqgridoptions,{multiselect:true});
Regards
Tony
Hello,
jqGrid does not support dynamically loading configuration per request.
In order to do this you should first GridUnload and then recreate the grid.
With setGrid param this will not work
Suppose the grid is initially configured
$(“#mybutton”).click(function(){
$(“#mygrid”).GridUnload(); // destroy the grid saving the table and pager
// here code to load new jqGrid configuration – like colmodel, colnames and etc
var newjqgridoptions = …..
$(“#mygrid”).jqGrid(newjqgridoptions);
return false;
})
Hope this help
Regards
Tony
Hello again,
Sorry for this. I really missed this in the docs. Also we have a couple of new editteipes:
Thease types are
button, image and file.
Sorry again
Best Regards
Tony
Hello,
If you carefully read the changes in 3.5 maybe you will find edittype:'file'
Hello,
I will be very happy with this. If I can help I will, but I do not work with cakephp, but still no matter.
Thanks
Best Regards
Tony
Hello,
Not sure, but why not try
result.responseText == “true”
Regards
Tony
Hello,
afterSubmit event should return array and not a value (see docs). Also to work this
Hello,
Thanks for finding this bug. It is fixed. You can dowload the build3 from this site. Also another very important bug is fixed. I recommend you to use the build 3
Thanks
Best Regards
Tony
Hello,
The solution is a little tricky.
1. Set your default datatype to json or xml.
2. define loadComplete event like this
loadComplete: function () {
$(“#mygrid”).setGridParam({datatype:'local'});
}
3. define onPaging event like thiss
onPaging : function(which_button) {
$(“#mygrid”).setGridParam({datatype:'json'});
}
Enjoy!
Do not forget to set sorttype in colModel in order to sort work correct
Regards
Tony
Hello,
As I see you first column is hidden and since the iCol parameter correspond to cellIndex property, there is a bug in IE6/7 browsers getting the right cellIndex when some columns is hidden.
For more information see
http://support.microsoft.com/kb/814506
Also the bug is corrected in 3.5 beta
Regards
Tony
Edit: The bug is present in IE7 instead that from Microsoft tell
that this is for IE6
Copyright 2014 TriRand LtdAll Rights ReservedRSS
Back to Top