Vue Table Versions Save

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.

v1.5.10

7 years ago
  • fix checkbox state in the table header was not proper set/clear when there's no items in selectedTo

v1.5.9

7 years ago
  • fix argument error in isSelectedRow()

v1.5.8

7 years ago
  • new prop for __component special field and detail row component : row-index
  • small fixes

v1.5.7

7 years ago
  • new event: vuetable:row-dblclicked, thanks @jaketoolson
  • fix: checkbox state in table header now display indeterminate state if checkboxes are not all checked. Close #123
  • fix multiple sort incorrectly use name var instead of sortField. Close #122

v1.5.6

7 years ago

new: data transformation feature, thanks to @noru for PR #115

v1.5.3

7 years ago
  • update vue-resource to v.1.0.2

v1.5.0

7 years ago
  • enhance: __component sepecial field is now sortable. Thanks @pauk-slon. Close #80
  • new: row-detail-component -- row detail should now be implemented as a component. Suggested by @malaschitz
  • deprecated: row-detail-callback -- use row-detail-component instead

v1.4.1

7 years ago
  • small fixes

v1.4.0

7 years ago
  • new special field: __component:<name>

    Allow using custom component as a content of the specified field. See example here for more detail.

v1.3.0

7 years ago
  • method getSortParam() is now overridable, so that you can control how sort query string is constructed before sending request to the server. (Close #55) See example
  • new event: cell-clicked This is introduced to fix the side-effect of using row-clicked event with toggle-detail event and also provide more fine grain click detection to table column. (Close #51).
  • Make the props name more consistent by introducing their replacement and deprecate the old ones. Warning message will be log to console when any of those deprecated props was used.
    • deprecate props
      • paginateConfig: use paginateConfigCallback instead
      • detail-row: use detail-row-callback instead
  • Log error to console when the given function name specified in detail-row-callback prop does not exist.
  • update examples, improve settings interface