Version 3.3

Released 2008-10-14

IMPORTANT: Modules have been restructured

In response to many requests, the structure of the modules has been revised.


Both of these new modules are required for the proper functioning of jqGrid.


Bug Fixes


User Contributions


Additions and Enhancements

Installation


The structure of the package is extended with two additional folders containing packed versions of jqGrid. See Installation.

basegrid



We can now sort a column based on another column. For example, if we have a formatted datetime column for display purposes plus a hidden int value of that datetime, sorts on the displayed column can be based on the hidden one. This can be achieved when using onSortCol event this way:

onSortCol: function(name,index) {
	if(name == 'displaydate')  {
 		jQuery("#grid_id").setGridParam({sortname:"hiddendate"});
 	}
}


colModel


The following apply to all editing modules: inlineedit, formedit, celledit


formEditing


Cell editing

This is a new feature of jqGrid, supporting navigation through a grid cell-by-cell with editing (for cells marked as editable). See Cell Editing for details.

Important Note: currently cell editing does not work in Safari browser.

treegrid


custom




  Last Updated: 2/1/2009 | © Tony's jqGrid - a jQuery Plugin, 2010