jqGrid icon indicating copy to clipboard operation
jqGrid copied to clipboard

jQuery grid plugin

Results 66 jqGrid issues
Sort by recently updated
recently updated
newest added

When using virtual scrolling (i.e., `scroll: true`), if the table rows are not of uniform height the table height calculation can be off which can lead to a situation where...

Bug

This is a low priority enhancement request but it is a nice to have feature that is becoming more common now. jqGrid right now doesn't have built-in components to drag...

Enhancement

Hi Tony, RowAttr as json string ignored. Changes: ``` javascript rowAttrObj = $.isFunction(ts.p.rowattr) ? ts.p.rowattr.call(ts, rd, cur, id) :{}; ``` to ``` javascript rowAttrObj = $.isFunction(ts.p.rowattr) ? ts.p.rowattr.call(ts, rd, cur)...

Enhancement

In 4.6, when I had an index column like this: ``` {name:'id',index:'id', hidden: true, key: true } ``` Then the treegrid would render the `tr` tag with the id taken...

Bug

When user double click on the column separator, column width should be automatically fit to content. This feature is same as window's explorer. If we double click on the column...

Enhancement

Datepickers on toolbar filter were getting created as gs_FieldName but if if we use 2 or more grids on the same page the date picker after selection of date would...

Hi Tony, I added a minor enhancement to include a parameter "multiselectSide" to allow for specifying the side of the jqGrid to add the multiselect checkbox. It is defaulted to...

This pull request: Adds a `multiselectField` property which, when set, conditionally enables/disables selectability of that row based on the field's value. Default is `false` (all rows are selectable). Adds a...

Extending filterToolbar to allow passing a user defined function that is used to filter/match rows. Typical usage: function regExMatch(cellValue,filterValue,row,fieldName) { var re = new RegExp(filterValue); return re.test(row[fieldName]); } ---- jqgrid...

This defines a new option, "multiselectClasses", which provides a similar behavior to the existing "classes" option, but only for the dynamically-generated multiselect column. Users can add custom CSS classes to...