Dear,
I have a simple grid with search enabled:
<ejs-grid id="Grid"
dataSource="@Model"
allowSorting="true"
allowPaging="true"
commandClick="commandClick"
toolbar="@(new List<string>() {"Search"})">
<e-grid-pagesettings pageSize="50" />
<e-grid-filtersettings type="Excel"></e-grid-filtersettings>
<e-grid-columns>
<e-grid-column field="Name" headerText="Name" type="string" width="150" />
<e-grid-column headerText="" width="200" commands=commands />
</e-grid-columns>
</ejs-grid>
How can I achieve automatic submit of the text that has been entered in the search box, with a timeout (for example 500ms)? So when a user enters for example "abc" it searches automatically after 500ms (without the user hitting enter)...
Thanks,
Koen