Home > jQuery > jqGrid 3.6.5

jqGrid 3.6.5

May 5th, 2010

Exactly three years after first publishing of jqGrid, we are happy to announce the 3.6.5 release of jqGrid. You should consider this release more as bug fix release (more than 30 fixes), but we have added a lot of new enchantments. The most important of them are:

  • Extended ARIA support
  • SearchFilter enchantments

The full list of fixes and changes can be found here

We working hard on the upcoming 3.7 release. Soon it will be available as alfa in the GitHub.

Kind Regard
jqGrid Team

Tags:
  1. May 5th, 2010 at 15:22 | #1

    downloading… thanks for your work!!!

  2. Butsyrin Ivan
    May 6th, 2010 at 07:31 | #2

    Hello.
    ‘rownumber’ option now working incorrectly. The number starts with -(‘rowNum’ value – 1) and increases in 1.

  3. Suresh
    May 6th, 2010 at 12:08 | #3

    Hi, great to have new jqGrid 3.6.5 version.
    Where can I get demo files with this new version.

  4. Nishith Kant Chaturvedi
    May 6th, 2010 at 13:15 | #4

    Hi
    I am trying to add custom buttons in bottom toolbar.toolbar and buttons are added successfully but onclick action is not Functional. code is

    $listacc(“#accountgridtable”)
    .toolbarButtonAdd(“#t_accountgridtable1″,{caption:”Toggle”,position:”first”,title:”Toggle Search Toolbar”, align:”right”, buttonicon :’ui-icon-search’, onClickButton:function(){ accountgriddiv[0].toggleToolbar(); } })

    javascript error console says accountgriddiv[0] undefined
    plz help

  5. GD
    May 9th, 2010 at 16:18 | #5

    Hi,

    Thanks for such a amazing plug-in. I am eagerly waiting for 3.7 version as well. Could you please tell us, when can we expect an alfa for 3.7?

  6. Charles
    May 17th, 2010 at 01:27 | #6

    why is it that you define “$” via closures around most of this library but then still make direct references to jQuery (e.g. grod.formedit & grid.import) within the code?! also there is much code that is not even scoped (e.g. grid.celledit & gridcommon). this makes it impossible to use multiple version of jQuery on the same page…

  7. ping
    May 21st, 2010 at 10:57 | #7

    Hello,
    How to use the iColorPicker in the jqGrid ?

  8. AAA
    May 25th, 2010 at 06:32 | #8

    For crying out loud. Why dont you link to the download when you announce a new version???

  9. manshahi
    June 7th, 2010 at 18:32 | #9

    i can’t use RTL feature at all!
    the grid columns does not arrange correctly, and the horizontal scrolling do incorrectly.
    this is my html page:

    My First Grid

    html, body {
    margin: 0; /* Remove body margin/padding */
    padding: 0;
    overflow: hidden; /* Remove scroll bars on browser window */
    font-size: 75%;
    }
    /*Splitter style */

    #LeftPane {
    /* optional, initial splitbar position */
    overflow: auto;
    }
    /*

    Right-side element of the splitter.
    */

    #RightPane {
    padding: 2px;
    overflow: auto;
    }
    .ui-tabs-nav li {position: relative;}
    .ui-tabs-selected a span {padding-right: 10px;}
    .ui-tabs-close {display: none;position: absolute;top: 3px;right: 0px;z-index: 800;width: 16px;height: 14px;font-size: 10px; font-style: normal;cursor: pointer;}
    .ui-tabs-selected .ui-tabs-close {display: block;}
    .ui-layout-west .ui-jqgrid tr.jqgrow td { border-bottom: 0px none;}
    .ui-datepicker {z-index:1200;}
    .rotate
    {
    /* for Safari */
    -webkit-transform: rotate(-90deg);

    /* for Firefox */
    -moz-transform: rotate(-90deg);

    /* for Internet Explorer */
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    }

    var mystr =” data1 data2 data3 data4 data5 data6 “;

    jQuery(document).ready(function(){
    jQuery(“#list”).jqGrid({
    direction:’rtl’,
    height: “auto”,
    pager: false,
    loadui: “disable”,
    treeGrid: true,
    ExpandColumn: “menu”,
    autowidth: true,
    width: 180,
    rowNum: 200,
    ExpandColClick: true,
    treeIcons: { leaf: ‘ui-icon-document-b’ },

    datatype: ‘xmlstring’,
    datastr : mystr,
    colNames:[‘Inv No’,’Date’, ‘Amount’,’Tax’,’Total’,’Notes’],
    colModel :[
    {name:’invid’, index:’invid’, width:55, sorttype:’int’},
    {name:’invdate’, index:’invdate’, width:90, sorttype:’date’, datefmt:’Y-m-d’},
    {name:’amount’, index:’amount’, width:80, align:’right’, sorttype:’float’},
    {name:’tax’, index:’tax’, width:80, align:’right’, sorttype:’float’},
    {name:’total’, index:’total’, width:80, align:’right’, sorttype:’float’},
    {name:’note’, index:’note’, width:150, sortable:false} ],
    viewrecords: true,
    caption: ‘My first grid’
    });
    });

  10. Hitesh
    November 16th, 2010 at 09:10 | #10

    Hi,
    I need to restrict the user typing some spl characters like “/,\,|,[,],:”. When i try to do it with keydown event i am getting the error. Can you please tell me how it can be done. If possible can u provide me some sample code.

Comments are closed.
Privacy Policy   Terms and Conditions   Contact Information