Hi there,
I'm trying to insert the value of an input into the Query of the grid.
I tried writing the JS/jQuery as a string and set is as the Query, but upon checking the Dev Tools > Network, my query wasn't added. I also did the document.getElementById version but same result.
var query = "new ej.data.Query().addParams('SearchFirstName', $('#SearchFirstName').val())";
<ejs-grid gridLines="Default"
allowTextWrap="true"
toolbar="customToolbarControls"
toolbarClick="toolbarClick"
height="500px"
allowSorting="true"
allowPaging="true"
query="@query"></ejs-grid>
PS: Using the built-in search isn't an option as of the moment.