score:0

i have found out that the field customfilterandsearch can help me on this one. for the ones who arrived here, to solve the problem i have made a quick search on my array:

  customfilterandsearch: (term, rowdata) => {
          return rowdata.lived.find((place) => {
            return place?.name?.tolowercase().includes(term.tolowercase());
          });
        }

https://codesandbox.io/s/material-table---create-dinamic-object-to-lookup-forked-2ed1n?file=/src/index.js

let me know if you think i could improve this.


Related Query

More Query from same tag