Home > jQuery > jqGrid 4.1.2

jqGrid 4.1.2

Month after 4.1.1 we publish a new version of jqGrid 4.1.2
This is a bug fix release.

For a detailed list of fixes please refer here

Enjoy

Tags:
  1. TPeczek
    July 20th, 2011 at 23:55 | #1

    Hi. The “filterGrid” method in grid.custom.js is missing (I’m checking all positions on download page).

  2. DB
    July 22nd, 2011 at 21:46 | #2

    I think, that there is a bug due to the change of edit / add in Form Editing. The problem I have is that after the update to 4.1.2 the additional data (in the editData) is not send in the request to the server.

  3. Andre
    July 26th, 2011 at 22:02 | #3

    Hi,

    you guys have done so far a great job. All the new stuff in the version 4 is great. However, it is missing some key features that I would like to see:

    1) Freeze columns
    2) Colspan and rowspan in the header

    Thanks!

  4. happy
    August 7th, 2011 at 04:25 | #4

    In form editing, after the data is displayed, should trigger a event, I need such a event to trigger input element’s change event.

    In search module, stype can be “custom”, as the one in edittype.

  5. happy
    August 7th, 2011 at 16:42 | #5

    In form editing, after data is displayed,should trigger a event,I need such a event to trigger input element change event.

  6. kobruleht
    August 14th, 2011 at 13:10 | #6
  7. Seni
    August 16th, 2011 at 23:30 | #7

    I have dome like zis

    I have add search above the grid just like this

    $(‘#searchb’).filterGrid(‘#grid’, { gridModel: true, gridNames: true, formtype: ‘vertical’, autosearch: false, enableSearch: true, enableClear: true });

  8. rahul
    August 17th, 2011 at 07:16 | #8

    In jsp page, i have to use editable jquery grid plugin data with backend mysql database support.

  9. P
  10. rahul
    August 18th, 2011 at 12:18 | #10

    rahul :
    In jsp page, i have to use jquery grid plugin and data load in grid from backend mysql database.

  11. August 20th, 2011 at 05:12 | #11

    fadfsf

  12. aniket
    August 22nd, 2011 at 10:09 | #12

    Hi. Is it possible to get data from java beans to show in jquery grid? If yes, then how?

  13. Zav
    August 23rd, 2011 at 00:11 | #13

    I looked through the commit logs and couldn’t find if these have been fixed as of yet, so I’m wondering if they were.

    1. column separator lines do not display on the Mac in Safari.
    2. on iOS devices (iPad) scroll bars do not show at all.

    We’re using jquery.jqGrid.min.js and jqGrid 4.0 Date: 2011-04-09

    Thanks in advance.

  14. saeed
    August 24th, 2011 at 07:09 | #14

    hi
    I need multiple grouping and multiple sorting in grid
    have contains (multiple sorting & grouping) in next release?

  15. Saif
    August 24th, 2011 at 12:42 | #15

    closeAfterReset is not working, i think code relating to this is missing in 4.1.2

  16. jim
    September 2nd, 2011 at 16:52 | #16

    Hi
    Has anyone noticed a sorting problem in grouping and treegrid where the sorter looks at the first character in a number to sort rather than the whole number? We have group numbers in the 100,000 range and 10,000 comes before 200,000. The data from the database comes through fine. I’m using jqGrid 4.1.2 & mysql

    Thanks
    Jim

  17. jim
    September 2nd, 2011 at 16:56 | #17

    Sorry, I meant 100,000 comes before 20,000 sorted as asc

  18. shalaroras
    September 12th, 2011 at 14:48 | #18

    Hi,
    Have been using jqGrid 3.8.2, great work!
    Issue is, I have huge no. of columns to be displayed in jqgrid, but not able to have horizontal scrollbars there, so the columns are luking messy..
    Have already tried jqGrid 4.1.2, but it didnt help.
    $(‘#’ + id).jqGrid({
    url: getDataUrl(),
    sortable: true,
    datatype: “json”,
    height: ‘100%’,
    colNames: getColNames(),
    colModel: getColModel(),
    multiselect: true,
    rowNum: $.fn.ltjqgrid.defaults.FundListDefaultNumberOfResultsPerPage,
    rowList: getRowList(),
    pager: ‘#’ + pagerId,
    sortname: $.fn.ltjqgrid.defaults.DefaultSorting,
    sortorder: $.fn.ltjqgrid.defaults.DefaultSortingDirection,
    recordtext: getLabel(“GridRecordText”, “View {0} – {1} of {2}”),
    emptyrecords: getLabel(“GridEmptyRecords”, “No records to view”),
    loadtext: getLabel(“LoadingPageLabel”, “Loading…”),
    pgtext: getLabel(“GridPageOf”, “Page {0} of {1}”),
    shrinkToFit: false,
    altRows: true,
    autowidth: true,
    viewrecords: true,
    page: currentPage,
    viewsortcols: [true, “vertical”, true],

    loadComplete: function () {
    $(‘#’ + id + ‘_cb’).addClass(“gridCheckbox”);
    for (var i = 0; i < colModelDataCache.length; i++) {
    $('#' + id + "_" + colModelDataCache[i].name).addClass(colModelDataCache[i].headerclasses);
    $('#' + id + ' tr td:first-child').addClass("gridCheckbox");
    showHideDynamicFilterColumns();
    }
    //remove inline style width atttribute of table

    });

    Please help

  19. TapanMp
    September 21st, 2011 at 15:07 | #19

    I am facing very slow loading for 5000 records its taking more than 2 min, the grid is not having pagination.

    i am using addRowData for loading rows :
    resGrid.addRowData(‘index’, responseData.rows, ‘last’);

    ———-
    My guess is -> this addRowData causing this problem. What may be the better option for quick loading?

  20. leinad
    September 23rd, 2011 at 17:00 | #20

    Hi,

    I am using the following to disable a cell in :loadComplete method
    grid.jqGrid(‘setCell’, id, ‘amount’, ”, ‘not-editable-cell’);

    How do I re-enable this cell?, I know I need to remove the class ‘non-editable-cell’ added above but i dont see any option to do this

    I have tried the above call with ‘ui-state-active’ also tried using getCell but that retrieves the value and not the Cell Object,

    Would really appreciate an answer for this

    Thanks

  21. InsiteFX
    September 24th, 2011 at 12:59 | #21

    @shalaroras
    width: ‘100%’,

    You can also try this:

    CSS file
    .table_div {
    width: auto;
    overflow-x:auto;
    }

    HTML

    display grid

  22. InsiteFX
    September 24th, 2011 at 13:01 | #22

    @InsiteFX
    It stripped out the division tags wrap the grid in a division using table-div

  23. September 25th, 2011 at 09:08 | #23

    Hi,
    in address http://www.trirand.com/blog/jqgrid/jqgrid.html#,
    when i am using 4.1.2 to make a subgrid ,i found a situation:
    when chose row 1’s sub grid row 2,it makes parent’s row 2 chosed too.

    is this a bug?

  24. September 28th, 2011 at 18:43 | #24

    I am using the following to disable a cell in :loadComplete method
    grid.jqGrid(‘setCell’, id, ‘amount’, ”, ‘not-editable-cell’);

    How do I re-enable this cell?, I know I need to remove the class ‘non-editable-cell’ added above but i dont see any option to do this

    I have tried the above call with ‘ui-state-active’ also tried using getCell but that retrieves the value and not the Cell Object,

    Would really appreciate an answer for this

    Thanks

  25. Domenico
    September 29th, 2011 at 12:51 | #25

    @DB

    yes. There is a bug, I have changed the line 6815
    “postdata = $.extend(postdata,rp_ge.editData,onCS);”
    with this
    “postdata = $.extend(postdata,rp_ge[$t.p.id].editData,onCS);”

    and all is ok.

  26. Jonny
    January 11th, 2012 at 01:50 | #26

    Cool, now maybe you can implement this for a REAL programming language like Java. PHP is for amateurs.

  1. No trackbacks yet.

Privacy Policy   Terms and Conditions   Contact Information