How to Hide paging, search and sorting serenity in grid and at which place needs to update code for same.
Hi @nareshIntelegain,
To hide grid pager, update grid.ts file:
protected usePager() {
return false;
}
To remove searchbox, you also need to update grid.ts file:
protected createQuickSearchInput() {
}
About sorting, add [Sortable(false)] attribute on fields you want, either Row.cs or Column.cs
Most helpful comment
Hi @nareshIntelegain,
To hide grid pager, update grid.ts file:
To remove searchbox, you also need to update grid.ts file:
About sorting, add [Sortable(false)] attribute on fields you want, either Row.cs or Column.cs