Currently, I am incorporating grid options using the code snippet provided below:
var gridOptions = {
columnDefs: columnDefs,
rowData: null,
enableFilter: true,
onFilterChanged: function() {console.log('onFilterChanged');},
onFilterModified: function() {console.log('onFilterModified');}
};
However, I am encountering an issue with the onFilterModified event where I am unable to retrieve parameters or filter details.
If anyone has any suggestions or insights on this matter, please feel free to share.