Praneeth Reddy
Praneeth Reddy
@geekrumper I'm using the following code `tbody> {{getData(row, column.name)}} Edit Delete ` in this edit is a popup. Now I want to get all the data in edit form. Bind...
Can I know the function??
I am trying to fix by adding if condition`if (column.filtering) { filteredData = filteredData.filter((item:any) => { if(item[column.name] === null){ item[column.name] = ""; } return item[column.name].match(column.filtering.filterString); }); }` but it's not...
With this `return (item[column.name] === column.filtering.filterString);` search is not working