tony

Forum Replies Created

Viewing 15 replies - 4,561 through 4,575 (of 7,981 total)
  • Author
    Replies
  • in reply to: Reload grid after saving to database #89636
    tony
    Keymaster

    Hello,

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

    Check carfully the order of the parameters passed to the editRow.

    Regards

    Tony

    in reply to: How to change subgrid header background color #89635
    tony
    Keymaster

    Hello Corrado,

    The table that contain the header is created dynamically, so the class scrollSubgrid is not added.

    You can do this diffrent ways, One possible solution:

    subGridRowExpanded: function(subgrid_id, row_id) {

    in reply to: Client-Side Sorting #89602
    tony
    Keymaster

    Hello

    …setGridParam({url:'myurl',datatype:'json'}).trigger(“reloadGrid”);

    will help

    in reply to: Right Click Menu. #89600
    tony
    Keymaster

    Open Demo page.

    New in version 3.5 => Tree grid real world example

    Please post your question in one form only and have a little pation.

    Regards

    Tony

    in reply to: How to stretch columns #89580
    tony
    Keymaster

    var gridWidth = parseInt($('#mailinfoGrid').getGridParam(”width”));
    $('#mailinfoGrid').setGridWidth(gridWidth+0.01,true);

    The grid does not change if you try to set the same width (A bug wich will be corrected soon);

    in reply to: Reload grid after saving to database #89578
    tony
    Keymaster

    Hello,

    I think you should use the option reloadAfterSubmit, which do this automatically for you.

    Regards

    Tony

    in reply to: Remove pagination option from pager #89577
    tony
    Keymaster
    in reply to: Mutiselect problem #89576
    tony
    Keymaster

    Hello,

    I think you do not read carefully what Mark write.

    1. You should set in grid configuration multiselect true and do not change this parameter anymore.

    2. You should operate on muliboxonly parameter as of the code above.

    Regards

    Tony

    in reply to: How to stretch columns #89575
    tony
    Keymaster

    No need to do this just call setGridWidth method with the second parameter set to true. See docs

    in reply to: Selecting Multi-Select Options on Edit Popup #89573
    tony
    Keymaster

    Hello Andrew,

    First of all Thank you very much for this investigation and finding bugs. Yes, we have these two bugs.

    Short: they are corrected in GitHub (Note that the correction is in 3.6 branch and not in master).

    It is quiete easy to work this way.

    Thank you very much again.

    Best Regards

    Tony

    in reply to: JQgrid inside JDIALOG not fetshing data on field change… #89571
    tony
    Keymaster

    Hello,

    You will need to call GridUnload method before constructing the grid. Something like:

    function myfunction()

    {

    ….

    jQuery.(“#list22”).GridUnload();

    jQuery.(“#list22”).jqGrid({…});

    jQuery(“#modal”).dialog(“open”);

    }

    Regards

    Tony

    in reply to: How to stretch columns #89570
    tony
    Keymaster

    Hello,

    Maybe you need to use a setGridWidth method. Also before this you will need to determine the width of the visible columns.

    You can do this using getGridParam method something like:

    var model = $(“#mygrid”).getGridParam(“colModel”);

    var visiblewidth = 0;

    $.each(model,function(){

    if (!this.hidden) visiblewidth += pareseInt(this.width);

    });

    Hope this help.

    Regards
    Tony

    in reply to: bsubmit and bCancel dissapear on form edition #89569
    tony
    Keymaster

    Hello,

    Thanks. It is some thing that should be improved. I recommend you to use not height, but dataheight parameter. See available options for form Editiong in documentation

    Best Regards

    Tony

    in reply to: custom unformat #89568
    tony
    Keymaster

    Hello,

    Could you please post the entry jqGrid configuration and all related functions related to this?

    Best Regards

    Tony

    in reply to: IE inserts over datastrings blank space #89567
    tony
    Keymaster

    Hello,

    Something wrong maybe with the code.

    If I open the Developer Tools in IE

Viewing 15 replies - 4,561 through 4,575 (of 7,981 total)

Stay connected with us in your favorite flavor!