Filtering problem on data table
See original GitHub issueHello everyone,
I am facing problem on filtering. Both column-filter and table-filter does not work if I use template inside datatable as slot on that specific coloumn.
<template #category="{item}">
<td>
<template v-if="item.category">{{item.category.category}}</template>
<template v-else>
<CBadge color="danger"> Category Not found</CBadge>
</template>
</td>
</template>
My question is:
- Is there any wrong the way I am doing things?
- What I am missing?
Issue Analytics
- State:
- Created 3 years ago
- Comments:10
Top Results From Across the Web
Problems with filtering data in table - Microsoft Community Hub
Hello,. I have a project for uni that I have to do but these 2 problems are standing in my way. ... Here...
Read more >Having an issue with a filter not working — DataTables forums
We have multiple filters and we've been working really well with them. I ran into one that doesn't seem to work, and I...
Read more >Problem Filter Data Table not working - Studio - UiPath Forum
Hi, I would like to generate a new table from an existing table that has to be filtered as follows, but these filters...
Read more >Filtering data causing formatting issues | Excel Forum
Filters work by hiding entire rows. You can't filter one table without affecting the visibility of any adjacent cells. You might be better...
Read more >DataTable Filtering - Webix
This is a text filter used for columns with numbers. It finds data records by comparing values from the column to the typed...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Thank you @woothu I get it now. I was thinking table will filter the string that is generated inside td but it actually filters the data that is actually passed to the coloumn key.
React core ui CDatatable tableFilter is not working and showing No filtering results