Releases: tochoromero/vuejs-smart-table
Releases · tochoromero/vuejs-smart-table
v0.0.7
- Fix the selectAll function. When calling
selectAll
on theVTable
instance we were using thedata
array reference as theselectedRows
, so when the user deselected a row it was removed from thedata
as well. The fix is just to use a shallow copy of thedata
array when setting all the rows as selected. #46
v0.0.6
Default Sort Event
Add a defaultSort
event to the v-th
component triggered when the default sort for a header has been performed
Loaded event
- There is now a
loaded
event fired when the initial data has been processed, the event parameter is a reference to thevuejs-smart-table
instance. - The
revealItem
function in thevuejs-smart-table
instance, used to reveal the page the item is contained, can now receive afunction
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.