Skip to content

v1.7.0

Compare
Choose a tag to compare
@ratiw ratiw released this 02 Nov 08:26
· 54 commits to master since this release
  • Fixed header feature is now supported via table-height prop, thanks to @rubinsh PR #266.
    See doc for more detail.

  • new field definition option: width
    It is recommended that you use the width option to specify the width of each field when using fixed header table. Thanks to @rubinsh.

  • no-data-template prop is now support HTML, PR #292. Thanks to @itelmenko.

  • new prop: show-sort-icons, also new options in css prop: ascendingClass and descendingClass
    When enabled, Vuetable will add additional css class to the <th> that would allow specific styling targeting the sort direction. See PR #262 and #263 for more info, thanks to @jwkicklighter.

  • new event: vuetable:row-mouseover, thanks to @DorkasV

  • new prop: httpFetch (type: Function, default: null)
    When specified, allowing user to specify external http request function to fetch the data via AJAX, otherwise, fallback to using axios internally as discussed in #127

  • new css.sortableIcon option. (type: String, default: '')
    When given, allow specifying css class to be displayed to provide visual clue which column is sortable. PR #192, thanks to @SUKOHI.

  • new prop: initial-page (type: Function, default: 1)
    Allow specifying the first page number of the data to be loaded during initialization.

  • Fixes

    • detail row transition position was incorrectly. Thanks PrimozRome for PR #258, Fixed #257.
  • others: