You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to be able to show or hide columns using a toggle. To accomplish this I have tried to use v-if and v-show` to no avail.
The v-if Issue
When using v-if everything seems to work fine. However if you hide any column that isn't the last column, when you toggle it to show again the header label shows in the original location but the data is appended to the last column and pushes the other data to the left. This makes all the values incorrect starting at the column you toggled.
The v-show Issue
When using v-show the header label is hidden but the data is still visible.
Let me know if there is anything I'm missing or what else I can try.
Thanks for making such an awesome component setup! I love it!
The text was updated successfully, but these errors were encountered:
I would like to be able to show or hide columns using a toggle. To accomplish this I have tried to use
v-if
and v-show` to no avail.The
v-if
IssueWhen using
v-if
everything seems to work fine. However if you hide any column that isn't the last column, when you toggle it to show again the header label shows in the original location but the data is appended to the last column and pushes the other data to the left. This makes all the values incorrect starting at the column you toggled.The
v-show
IssueWhen using
v-show
the header label is hidden but the data is still visible.Let me know if there is anything I'm missing or what else I can try.
Thanks for making such an awesome component setup! I love it!
The text was updated successfully, but these errors were encountered: