Releases: kartik-v/yii2-grid
Releases · kartik-v/yii2-grid
Version 2.0.0
Date: 14-Sep-2014
- (enh #80): Add hidden property for columns to be hidden from display but available on export.
- (bug #81): CSS class
kv-grid-hide
configured for hidden columns. - (enh #82): Created a reusable
ColumnTrait
for all custom yii2-grid columns. - (enh #83): Upgraded jQuery floatTheader plugin to latest version.
- (bug #85, #87, #88): Enhance EditableColumn to capture keys of various data types
- PSR 4 alias change
- (bug #92): Bug fix for generating multiple rows in header/footer.
Version 1.9.0
Date: 21-Aug-2014
- (enh #65): Various enhancements to the widget to work with Pjax
- (enh #67): Fix Chrome bug for displaying loading indicator on tbody.
- (enh #72): Enhancement for EditableColumn
beforeInput
andafterInput
. - (enh #73): Enhancement for EditableColumn options to be configured as callback.
- (enh #74,76): Enhance EditableColumn to allow grid refresh on successful update.
Version 1.8.0
Version 1.7.0
Date: 14-Jul-2014
- (enh #57): Added
containerOptions
to grid layout for allowing configuration of the grid table container. This can be set to
false
to not display the container.
Version 1.6.0
Date: 10-Jul-2014
- (enh #54): Grid Export Enhancements
- Ability to preprocess and convert column data to your desired value before exporting. For example convert the HTML formatted icons for BooleanColumn to user friendly text like
Active
orInactive
after export. - Hide any row or column in the grid by adding one or more of the following CSS classes:
skip-export
: Will skip this element during export for all formats (html
,csv
,txt
,xls
).skip-export-html
: Will skip this element during export only forhtml
export format.skip-export-csv
: Will skip this element during export only forcsv
export format.skip-export-txt
: Will skip this element during export only fortxt
export format.skip-export-xls
: Will skip this element during export only forxls
(excel) export format.
These CSS can be set virtually anywhere. For exampleheaderOptions
,contentOptions
,beforeHeader
etc.
- (enh #52): Upgraded float header plugin
- Enhanced panel footer to have a consistent height whether pagination is displayed or not.
BooleanColumn
icons have been setup asICON_ACTIVE
andICON_INACTIVE
constants in GridView.ActionColumn
content by default has been disabled to appear in export output. Theskip-export
CSS class has been set as default inheaderOptions
andcontentOptions
.
Version 1.5.0
Date: 04-Jul-2014
- (enh #51): Enhanced GridView header and footer, to include additional headers/footers before or after default header/footer.
The properties below can be set as an array or string:- Added
beforeHeader
property to configure additional header rows before the default grid header. - Added
afterHeader
property to configure additional header rows after the default grid header. - Added
beforeFooter
property to configure additional footer rows before the default grid footer. - Added
afterFooter
property to configure additional footer rows after the default grid footer.
- Added
- Fixes #26 to #50.
Version 1.4.0
Changes from v1.0.0 to v1.4.0
Version 1.4.0
- (enh #25): Allow highlighting of selected row for a CheckboxColumn
- Added
rowHighlight
property to set if a row needs to be highlighted - Added
rowSelectedClass
property to configure the CSS class for the highlighted row.
- Added
- Fixes #20 to #24.
Version 1.3.0
- (enh #19): Gridview enhancements (export, toolbar, iframe)
- Enable rendering of export without panel by passing
{export}
variable to gridlayout
property. - Enable rendering of toolbar without panel by passing
{toolbar}
variable to gridlayout
property. - Revamp export form to be submitted in a new window (in a non-intrusive manner)
- Enable rendering of export without panel by passing
- Fixes #1 to #19.
Version 1.2.0
- Converted the extension into a module.
- Export features enhanced for use across all browsers:
- Save displayed grid as HTML
- Save displayed grid as CSV
- Save displayed grid as TEXT
- Save displayed grid as XLS
Version 1.1.0
- Export features added through a brand new custom JQuery plugin:
- Save displayed grid as HTML
- Save displayed grid as CSV
- Templates to modify positioning of the export menu and the panel before and after contents
- Ability to display toolbar in the header.
Version 1.0.0
Initial release