Skip to content

Version 1.6.0

Compare
Choose a tag to compare
@kartik-v kartik-v released this 14 Jul 04:17

Date: 10-Jul-2014

  1. (enh #54): Grid Export Enhancements
  2. 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 or Inactive after export.
  3. 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 for html export format.
    • skip-export-csv: Will skip this element during export only for csv export format.
    • skip-export-txt: Will skip this element during export only for txt export format.
    • skip-export-xls: Will skip this element during export only for xls (excel) export format.
      These CSS can be set virtually anywhere. For example headerOptions, contentOptions, beforeHeader etc.
  4. (enh #52): Upgraded float header plugin
  5. Enhanced panel footer to have a consistent height whether pagination is displayed or not.
  6. BooleanColumn icons have been setup as ICON_ACTIVE and ICON_INACTIVE constants in GridView.
  7. ActionColumn content by default has been disabled to appear in export output. The skip-export CSS class has been set as default in headerOptions and contentOptions.