Hello
Is it possible to maintain the state of the grid, when web page is refreshed so that it maintains the page number and also the text that was written in the search box?
My sfgrid is declared as follows:
<SfGrid DataSource="@dsProyectos" AllowPaging="true" AllowSorting="true" Toolbar=@toolBar RowHeight="30"
AllowSelection="true" AllowFiltering="false" EnablePersistence="true">
<GridEditSettings AllowEditing="false"></GridEditSettings>
<GridPageSettings PageSize="20"></GridPageSettings>
<GridSelectionSettings PersistSelection="true"></GridSelectionSettings>
<GridColumns>
<GridColumn Field=@nameof(ProjectModel.PROJECT_ID) TextAlign="TextAlign.Left" Width="150" IsPrimaryKey="true"
CustomAttributes="@(new Dictionary<string, object>() {{"class", "e-attr"}})">
<HeaderTemplate>
<div>ID</div>
</HeaderTemplate>
</GridColumn>
.....
</GridColumns>
</SfGrid>