Hello,
I have a data grid where it is populated and updates its data every 30 seconds using the updateURL and initial url as seen below:
<ejs-grid id="activeECNs"
queryCellInfo="RemoveNullDates"
allowPaging="false"
class="row-styling"
allowFiltering="true"
allowSorting="true"
allowTextWrap="true" height="500"
toolbarClick="toolbarClick"
allowExcelExport="true"
rowDataBound="HighlightUserAccessActions"
toolbar="@(new List<string>() {"ExcelExport", "Search"})">
<e-data-manager url="@Url.Action("UrlActiveGridDS", "BNN")" updateUrl="/BNN/UrlActiveGridDS" adaptor="UrlAdaptor"></e-data-manager>
When using the Search Bar it requests new data from the updateURL, however, is there a way to instruct it only to search(filter) the data already in the grid versus trying to get new data from the updateURL address. Because, I manually call an update on the grid every 30 seconds, so the data is already current and I am trying to not have unneeded calls to refresh the data. For example when not using the UrlAdapter and you specify the dataSource as seen below:
<ejs-grid id="activeECNs"
queryCellInfo="RemoveNullDates"
allowPaging="false"
class="row-styling"
allowFiltering="true"
allowSorting="true"
allowTextWrap="true" height="500"
toolbarClick="toolbarClick"
dataSource="@Model.ActiveBNNs"
The search bar only filters on the data in the grid. Is there a way to have this functionality when using the UrlAdaptor?