tony

Forum Replies Created

Viewing 15 replies - 2,986 through 3,000 (of 7,981 total)
  • Author
    Replies
  • in reply to: method for triggering search dialog #93396
    tony
    Keymaster

    Hello,

    There is API for this

    In the nonminified version open jquery.searchFilter.js and you will see how the author of this plugin describe this call.

    For your information the id of the search is a combination of “fbox_” + the id of the grid

    Regards

    Tony

    in reply to: File editype #93395
    tony
    Keymaster

    Hello,

    The purpose of this is to have file upload using other plugins.

    Sorry no exmple on this.

    Regards

    Tony

    in reply to: DnD and sortableRows grid behaviour #93394
    tony
    Keymaster

    Hello,

    Thanks. We will definitley check this. Seems to be a problem with jQuery UI.

    Regards

    Tony

    in reply to: Scroll and multiselect #93393
    tony
    Keymaster

    Hello,

    Sorry this is discussed here, for now it is not planed to be changed. We should apply some huge logic.

    Regards

    Tony

    in reply to: Maintaining checkbox selections through a page operation #93392
    tony
    Keymaster

    Hello,

    When it is in github it means that it will be in the next release.

    Regards

    Tony

    in reply to: Export data #93391
    tony
    Keymaster

    Hello,

    Currently no, but you cam use getRowdata without parameter – in this case you will have all the data in array and you can easy export it to what you want.

    Regards

    Tony

    in reply to: can’t get pagination working #93390
    tony
    Keymaster

    Hello,

    Check your server side code

    Regards

    Tony

    in reply to: Edit row problem #93389
    tony
    Keymaster

    Hello,

    Sorry I do not understand what you mean.

    Regards

    Tony

    in reply to: drag & drop doesn’t work on IE6 #93388
    tony
    Keymaster

    Hello,

    Just do this into the demo and everthing is working ok.

    The problem is maybe that you use ajax calls to load the data. In this case I sugest you to call gridDnD with setTimeout function, something like

    // wait untill all data is loaded and then call drag and drop

    setTimeout(function(){

    jQuery(“#barre_nav1″).jqGrid('gridDnD',{connectWith:'#barre_nav2,#barre_nav3'});

    jQuery(“#barre_nav2″).jqGrid('gridDnD',{connectWith:'#barre_nav1,#barre_nav3'});

    Query(“#barre_nav3″).jqGrid('gridDnD',{connectWith:'#barre_nav1,#barre_nav2'});

    },800)

    Regards

    Tony

    in reply to: errorCell not working? #93368
    tony
    Keymaster

    Hello,

    Evrething we do is to use jQuery ajax where a error function is defined, something like

    $.ajax({

    complete:function(…) {

    },

    error:function(..)

    {

    }

    });

    Try to see with jQuery ajax in 302 error is lunched

    Also more info and how the code looks will be helpfull

    Regards

    Tony

    tony
    Keymaster

    Hello,

    var gr = jQuery(“#htmlTable2″).jqGrid('getGridParam','sellarrow');

    will return the selected rows when you are in multiselect mode.

    You can use getRowData without parameter to get all the data rows from the grid and then convert this array

    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:methods

    in a way which can be posted to the server

    Regards

    Tony

    in reply to: Date Format not working #93365
    tony
    Keymaster

    Hello,

    Currently this will not work, since the format function expect to have separators. Sorry.

    You can resolve the issue applying custom formatter:

    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:custom_formatter

    Best regards

    Tony

    in reply to: onSelectRow causes multiple rows ro be selected #93364
    tony
    Keymaster

    Hello,

    Be a sure that the id's are uniquie.

    Regards

    Tony

    in reply to: saveRow when checkValues fails #93363
    tony
    Keymaster

    Hello,

    When we save the data locally as in your case this have sense, but when we save the data with ajax it is difficult to determine what to return since the method is executed and the ajax call continnue his execution and we do not know what to return.

    I recommen you to put

    callSaveList in aftersavefunc in order to resolve this problem

    Best Regards

    Tony

    in reply to: Filter on empty cells #93361
    tony
    Keymaster

    Hello,

    Do you perform the search on the server?

    Regards

    Tony

Viewing 15 replies - 2,986 through 3,000 (of 7,981 total)

Stay connected with us in your favorite flavor!