Skip to content

Releases: tochoromero/vuejs-smart-table

v0.0.7

30 Dec 15:51
Compare
Choose a tag to compare
  • Fix the selectAll function. When calling selectAll on the VTable instance we were using the data array reference as the selectedRows, so when the user deselected a row it was removed from the data as well. The fix is just to use a shallow copy of the data array when setting all the rows as selected. #46

v0.0.6

23 Dec 12:47
Compare
Choose a tag to compare
  • Fixed the sort icons, they were backward #19
  • Included the .vue extension to the imports in main.js #18

Default Sort Event

15 Mar 15:46
Compare
Choose a tag to compare

Add a defaultSort event to the v-th component triggered when the default sort for a header has been performed

Loaded event

15 Mar 15:07
Compare
Choose a tag to compare
  • There is now a loaded event fired when the initial data has been processed, the event parameter is a reference to the vuejs-smart-table instance.
  • The revealItem function in the vuejs-smart-table instance, used to reveal the page the item is contained, can now receive a function as its argument, it will use it to find the item and reveal it. This is in addition to receiving the actual item to reveal.