tony

Forum Replies Created

Viewing 15 replies - 5,566 through 5,580 (of 7,981 total)
  • Author
    Replies
  • in reply to: change select options for each row #87037
    tony
    Keymaster

    Hello,

    Could you please post the rest of code where you edit the cell?

    Regards

    Tony

    in reply to: Row height and FF/MSIE difference #87036
    tony
    Keymaster

    Hello,

    Open the grid.css and see this settings

    in reply to: Grid is not work in IE and Opera #87035
    tony
    Keymaster

    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

    in reply to: Column Formula and dynamic column #87034
    tony
    Keymaster

    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

    in reply to: file upload again #87033
    tony
    Keymaster

    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

    in reply to: Problem With Multiple Instance of jqgrid #87032
    tony
    Keymaster

    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

    in reply to: setGridParam problem? #87031
    tony
    Keymaster

    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

    in reply to: file upload again #87021
    tony
    Keymaster

    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

    in reply to: file upload again #87020
    tony
    Keymaster

    Hello,

    If you carefully read the changes in 3.5 maybe you will find edittype:'file'

    in reply to: to Tony #87019
    tony
    Keymaster

    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

    in reply to: saverow problem in 3.4.4 #87018
    tony
    Keymaster

    Hello,

    Not sure, but why not try

    result.responseText == “true”

    Regards

    Tony

    in reply to: form editing in 3.5 Beta #87017
    tony
    Keymaster

    Hello,

    afterSubmit event should return array and not a value (see docs). Also to work this

    in reply to: datatype as a function in 3.5 beta #87016
    tony
    Keymaster

    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

    tony
    Keymaster

    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

    in reply to: onCellSelect and IE7 #87000
    tony
    Keymaster

    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

Viewing 15 replies - 5,566 through 5,580 (of 7,981 total)

Stay connected with us in your favorite flavor!