tony

Forum Replies Created

Viewing 15 replies - 4,006 through 4,020 (of 7,981 total)
  • Author
    Replies
  • in reply to: Add/remove columns on an initialized jqGrid #91166
    tony
    Keymaster

    Hello,

    Thanks for this. Also the feature is discussed many times here and it seems that this one that should be added in 3.7 release.

    Best Regards

    Tony

    in reply to: Hide Header Layer/subgrid auto-expand #91165
    tony
    Keymaster

    Hello,

    1. No direct method, but you can do it with single command after the grid is created

    $(“.ui-jqgrid-hdiv”, “#gbox_”+mygridid).hide();

    where mygrid is the id of the grid

    2. Currently no.

    Best Regards

    Tony

    in reply to: adding custom parameters to the grid #91164
    tony
    Keymaster

    Hello,

    Maybe you do not read the right section in the docs.

    If you pass a second parameter to editRow – e.g true you can save tha data with enter key

    See here:

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

    Best Regards

    Tony

    in reply to: jqgrid with jquery ui tabs and json #91163
    tony
    Keymaster

    Hello,

    From what I see into the code you call every time the creation of grid when a tab is selected.

    Here you can solve the problem diffrent ways

    1. Use GridUnload method before constructing the grid – e.g

    $(”#volunteer_grid”).GridUnload();

    $(”#volunteer_grid”).jqGrid({…});

    2. Check to see if the grid is already created and if so just open a tab (or maybe trigger the grid to refresh the data)

    var maygrid = $(”#volunteer_grid”);

    if(mygrid[0].grid) {

    // refresh it mybe

    } else {

    // create grid

    }

    Best Regards

    Tony

    in reply to: how to implement drag and drop in a subgrid? #91162
    tony
    Keymaster

    Hello,

    What you mean with this? Do you have a example?

    What you use grid as subgrid or “pure” subgrid”?

    Regards

    Tony

    in reply to: navigate in add inline form #91161
    tony
    Keymaster

    Hello,

    They work well, but since there is no value in the add form for the id we can

    in reply to: Sorting rows and add extra parameters #91160
    tony
    Keymaster

    Hello,

    Welcome Enrico!

    Also you can use th onPaging event to do the things what you want.

    Also look at events in the wiki:

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

    Best Regards

    Tony

    in reply to: Add ‘delfunc’ and ‘viewfunc’ parameters to navGrid #91158
    tony
    Keymaster

    Hello,

    They are present with just the same names.

    I will see into the docs if they are missed.

    Best Regards

    Tony

    in reply to: fitToScreen() #91157
    tony
    Keymaster

    Hello,

    What you mean with “none of them work with IE” ?

    What is happen?

    For IE you maybe you will need not to use innerWidth instead of width

    Regards

    Tony

    in reply to: checkbox value when true not saving to false in jqGrid-3.6 #91156
    tony
    Keymaster

    Hello,

    You can grab the fix from GitHub and if you have installed ant you can build the min version

    Also I plan to publish a bug fix at end of this week.

    There will be no post for this, so you will check the download page.

    Best Regards

    Tony

    in reply to: bugg with required #91155
    tony
    Keymaster

    Hello,

    As usual this does not help you.

    Please – post your code

    Tony

    in reply to: filter in grid #91144
    tony
    Keymaster

    Hello,

    If I understand right – could you please look at demo page

    New in version 3.5 => Integrated Search Toolbar I think that this is what you mean

    Best Regards

    Tony

    in reply to: navigate in add inline form #91137
    tony
    Keymaster

    Hello,

    Use beforeShowForm in add mode like this

    beforeShowForm : function (formid) {

    $(“#pData, #nData”,formid).show();

    }

    Regards

    Tony

    in reply to: navigate in add inline form #91135
    tony
    Keymaster

    Hello,

    Did you mean to see the buttons prev/next in Form editing when we are in add mode?

    This is possible, but you will have trouble when you use them.

    Regards

    Tony

    in reply to: Sorting by localised date #91134
    tony
    Keymaster

    Hello,

    I think you will need to set datefmt option in colModel. Check the docs:

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

    Regards

    Tony

Viewing 15 replies - 4,006 through 4,020 (of 7,981 total)

Stay connected with us in your favorite flavor!