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 am trying to test an "Editable Table" with a HeaderFilter (select list) in Next.js,
but the list doesn't appear when I click the filter input (and column as well).
I am trying to test an "Editable Table" with a HeaderFilter (select list) in Next.js,
but the list doesn't appear when I click the filter input (and column as well).
link - code sandbox for react tabulator example
editableColumns info below
{
title: "Favourite Color",
field: "color",
editor: "select",
editorParams: {
allowEmpty: true,
showListOnEmpty: true,
values: colorOptions
},
headerFilter: "select",
headerFilterParams: { values: colorOptions }
},
Could you please advise on how to solve this issue? . Thank you!
Environment Details
"next": "14.1.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-tabulator": "^0.19.0",
"typescript": "^5"
The text was updated successfully, but these errors were encountered: