Home > jQuery > jqGrid 3.7

jqGrid 3.7

June 15th, 2010

Today we released 3.7 version of jqGrid.
Many thanks to all that helped us to improve this version and fix a lot of bugs.

The full list of changes is here

You can view all the new thing in action here

The documentation and the demo package will be updated after two days.

Again with this we have the updated our popular jqGrid for PHP commercial component.

Enjoy
jqGrid Team.

Tags:
  1. Nima
    June 17th, 2010 at 00:49 | #1

    The new “data” property for loading an entire array at once is great!!!
    But how can I set that after the grid has already been initialized??

  2. June 17th, 2010 at 03:04 | #2

    Thanks a lot guys. I have been waiting for this ๐Ÿ™‚ will use it in few days and will post the feedback.

  3. Jan
    June 22nd, 2010 at 17:23 | #3

    Where should I look for the new 3.7 documentation? (it is already 7 days:) Thank you.

  4. Mike Erickson
    June 23rd, 2010 at 05:42 | #4

    I need help displaying seemingly simple JSON table. This displays grid and shows “Loading” but never shows data. i have looked all over for examples but am not able to get it work ๐Ÿ™

    JSON Source: http://www.asgsoft.com/states.json

    Code:

    $(“#statesGrid”).jqGrid({
    url:’states.json’,
    datatype: “json”,
    colNames:[“name”, “abbreviation”,”capital”,”most-populous-city”,”square-miles”,”time-zone-1″,”time-zone-2″,”dat”],
    colModel:[
    {name:’name’,index:’name’, width:75},
    {name:’abbreviation’,index:’abbreviation’, width:90},
    {name:’capital’,index:’capital’, width:100},
    {name:’most popular city’,index:’most-populous-city’, width:80, align:”right”},
    {name:’square miles’,index:’square-miles’, width:80, align:”right”},
    {name:’time zone 1′,index:’time-zone-1′, width:80,align:”right”},
    {name:’time zone 2′,index:’time-zone-2′, width:150, sortable:false},
    {name:’dat’,index:’dat’,width:200}
    ],
    rowNum:10,
    rowList:[10,20,30],
    pager: ‘#pager’,
    sortname: ‘name’,
    viewrecords: true,
    sortorder: “desc”,
    caption:”States”
    });

  5. June 23rd, 2010 at 15:30 | #5

    @Nima,
    See the demo page – New in 3.7

    @Jan
    The documentation is already up to date.
    Look first here
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_3.7_changes_and_fixes

    – what is fixed and what is new and then search for these new things in grid options.

    @Mike,
    Your problem is that you should configurire the jsonReader for this purpose.
    A quite full description of this can be found here:
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data#json_data

    Regards
    Tony

  6. ffj
    June 23rd, 2010 at 16:57 | #6

    i think this is bug:
    grid.base.js line 56 :twrap += “” — twrap += “>”;

  7. June 24th, 2010 at 01:11 | #7

    @Mike Erickson
    You can set the data after initialized.

    $(“#t1”).setGridParam({data:eventData});
    $(“#t1”).trigger(“reloadGrid”);

  8. June 24th, 2010 at 16:20 | #8

    There seems to be an error with regard to the reccount property. I’ve just upgraded from 3.5.3 to 3.7.1 RC1 and my references to this.reccount from within the gridComplete function are resolving to UNDEFINED regardless of the number of rows in the table.

    I’ve created a quick fix by just counting the number of tr elements descending from the table that contains the rows, but reccount is so much more elegant. I can see that it is still defined in the jqgrid source, but haven’t been able to figure out why it’s gone missing in gridComplete.

  9. Diego
    June 24th, 2010 at 20:14 | #9

    Hi, everybody, I don’t know if this is the right place, but I have a question about the single search, when I used the option for search, my grid is unavaible, it’s show me the windows that serch but it’s not working. I follow the example in the documentation. Am I missing a parameter or someting like that?

  10. Mike Erickson
    June 29th, 2010 at 01:32 | #10

    @jimmy

    I just be dense, but I just cant make this work! I have tried so many different settings. Any chance you can quickly review this and see what i am missing?

    JSON Source: http://www.asgsoft.com/states.json

  11. Mike Erickson
    June 29th, 2010 at 01:34 | #11

    Tony, I have tried so many things… Just cant get it to work. Are there any live examples which show this any better?

    tony :
    @Nima,
    See the demo page รขโ‚ฌโ€œ New in 3.7
    @Jan
    The documentation is already up to date.
    Look first here
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_3.7_changes_and_fixes
    – what is fixed and what is new and then search for these new things in grid options.
    @Mike,
    Your problem is that you should configurire the jsonReader for this purpose.
    A quite full description of this can be found here:
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data#json_data
    Regards
    Tony

  12. Mike Erickson
    June 29th, 2010 at 02:04 | #12

    I am really grasping at straws here, it seems my data is not the format that jsonReader is expecting (see my original message for link to data)

    My last ditch effort

    jsonReader: {
    root: “states”,
    repeatitems: false,
    subgrid: {
    root: “state”,
    repeatitems: true,
    subgrid: {
    root: “@attributes”,
    repeatitems: true
    },
    }
    },

    tony :
    @Nima,
    See the demo page รขโ‚ฌโ€œ New in 3.7
    @Jan
    The documentation is already up to date.
    Look first here
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:change#jqgrid_3.7_changes_and_fixes
    – what is fixed and what is new and then search for these new things in grid options.
    @Mike,
    Your problem is that you should configurire the jsonReader for this purpose.
    A quite full description of this can be found here:
    http://www.trirand.com/jqgridwiki/doku.php?id=wiki:retrieving_data#json_data
    Regards
    Tony

  13. July 1st, 2010 at 12:20 | #13

    @Mike
    you have the answer into the forum.
    Tony

  14. WildRAID
    July 1st, 2010 at 22:30 | #14

    thnx. gr8 grid. ^^
    A lot of usefull features, fast, easy to use, understand and customize.

    Keep it up)

  15. Jan
    July 6th, 2010 at 19:40 | #15

    I was looking for 3.7 demo package, or demo files such those available on download page for 3.6 version. Tony, if you have them ready, please make them available. Thank you, J.

  16. sandyraj
    July 8th, 2010 at 00:37 | #16

    is it free or not? from where i can download jqgrid free version libraries

  17. kayasax
    July 11th, 2010 at 12:11 | #17

    Thank you so much for sharing your work this is really a great job,
    the fastest grid plugin i’ve tried and you API is the more complete i’ve seen.

    JQGrid is awesome and will surely be the indispensable plugin for all my future projects.
    Peace

  18. fege
    July 12th, 2010 at 12:41 | #18

    Can jqGrid make the colNames and colModel dynamic,means I can define it not in the page but from the database, so that the data is not sure.
    I didn’t find in the wiki.

  19. Vinay
    July 22nd, 2010 at 09:27 | #19

    @Mike Erickson
    Facing same issue do you get any solution to it ?

  20. Swetlana
    September 3rd, 2010 at 11:18 | #20

    Dear Tony, I use the free version of jqGrid (javascript only) , many thanks for your work!
    I was interested in the commercial product jqGrid + PHP and have downloaded the trial version from http://www.trirand.net/download.aspx.
    How I can remove it from my server? I still use free jqGrid, but now all fields in my tables are cut off on the end.

Comments are closed.
Privacy Policy   Terms and Conditions   Contact Information