hi Miguel,
many thanks for your help, i really appreciate that. instead tag, i used string, it works.
i also want to share the way, in case someone needs.
1st, with sql query i get the data, and convert the tag into strings.
2nd, i need to filter the data based on 3 different column variables, so i added 3 select/dropdown menu
- As data source in selects, i used following block of code. because i need to see related values, based on each filter
{{ select5.value ? table4.data.filter(x => x.kategorieName === select5.value) :table4.data }}
- for the last filter, following one is used.
{{ (select4.value ? table4.data.filter(x => x.schedulerLoggerBookingFixedReason === select4.value) :table4.data) && (select5.value ? table4.data.filter(x => x.kategorieName === select5.value) :table4.data) }}
3rd, those selects are added as Default filters.