Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Hi,
We use grid filter with type: 'Menu', it filters data correctly. But we've noticed the following error in the filter displaying:
1) Open filter and input smth. Click 'Filter'
2) The popup of the filter is closed, data is filtered in the correct way.
3) Open the filter popup again - the value is not displayed in the input field. But the filtering still works fine, the input value is saved in the filter config variable and sent to backend.
This happens in the next conditions:
1) complex binding of the field:
class ParentModel {
parentProperty: ChildModel
}
class ChildModel {
childProperty: string
}
Then we have in service class:
tableHeader : ColumnModel[] = [ { field: '
',
type: GridColumnType.STRING...
} ]
2) The
Note: we have the same filters 'Menu', with complex binding and NULL values in other grids, and do not get the same error there, though the Client (Angular) and Backend (.NET Core) code is the same for them.
Could you please check if this is a bug or we're missing something?