I have implemented server-side model in ag-grid with javascript, I tried with setQuickFilter
function to implement global search but its not working for me. Is there any way to implement this stuff?
I tried with below code but its not working in server side model.
In HTML file:
<input type="text" id="filter-text-box" placeholder="Filter..." oninput="onFilterTextBoxChanged()"/>
In JS file:
function onFilterTextBoxChanged() {
gridOptions.api.setQuickFilter(document.getElementById('filter-text-box').value);
}
reference : https://www.ag-grid.com/javascript-grid-filter-quick/