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
When I activate columnFilter, I can filter colmun individually.
But when I deactivate columnFilter then filters applies without any chance to see or access filters value.
Is it possible to change custom-table.vue (around line 403) to add a check if column filters should apply or not.
Before :
if (!props.isServerMode) {
props.columns?.forEach((d) => {
...
});
if (currentSearch.value && rows?.length) {
...
After :
if (!props.isServerMode) {
if (props.columnFilter) {
props.columns?.forEach((d) => {
...
});
}
if (currentSearch.value && rows?.length) {
...
The text was updated successfully, but these errors were encountered:
Hi,
When I activate columnFilter, I can filter colmun individually.
But when I deactivate columnFilter then filters applies without any chance to see or access filters value.
Is it possible to change custom-table.vue (around line 403) to add a check if column filters should apply or not.
Before :
After :
The text was updated successfully, but these errors were encountered: