gregnb / gregnb/mui-datatables
Problem with search for TextField column
- Dominant language
- JavaScript
- Stars
- 2.7k
- Forks
- 906
- PR merge metrics
- No merged PRs in 30d
Description
I am using "mui-datatables": "^3.8.5"
I have table with last column as textfield. In deault state, first column and last should have same value:

When I search for some text in the table, there is problems with proper filtering last column. First column and last should have same value, but when I use search last column not updates it state properly:

Code for last column:
` {
name: 'email',
label: 'Email',
options: {
sort: true,
filter: false,
customBodyRender: (value, tableMeta) => {
return (
{
const branch = tableMeta.rowData[0];
handleChangeEmail(event, branch, originalBranches);
}}
/>
);
},
},
},`
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.