|
|
|
|
|
---|---|---|---|---|
Patricio Simpson | Cactus Comidas para llevar | Buenos Aires | Argentina | |
Yvonne Moncada | Océano Atlántico Ltda. | Buenos Aires | Argentina | |
Sergio Gutiérrez | Rancho grande | Buenos Aires | Argentina | |
Roland Mendel | Ernst Handel | Graz | Austria | |
Georg Pipps | Piccolo und mehr | Salzburg | Austria | |
Catherine Dewey | Maison Dewey | Bruxelles | Belgium | |
Pascale Cartrain | Suprêmes délices | Charleroi | Belgium | |
Pedro Afonso | Comércio Mineiro | Sao Paulo | SP | Brazil |
Aria Cruz | Familia Arquibaldo | Sao Paulo | SP | Brazil |
André Fonseca | Gourmet Lanchonetes | Campinas | SP | Brazil |
Mario Pontes | Hanari Carnes | Rio de Janeiro | RJ | Brazil |
Bernardo Batista | Que Delícia | Rio de Janeiro | RJ | Brazil |
Lúcia Carvalho | Queen Cozinha | Sao Paulo | SP | Brazil |
Janete Limeira | Ricardo Adocicados | Rio de Janeiro | RJ | Brazil |
Anabela Domingues | Tradição Hipermercados | Sao Paulo | SP | Brazil |
Paula Parente | Wellington Importadora | Resende | SP | Brazil |
Elizabeth Lincoln | Bottom-Dollar Markets | Tsawassen | BC | Canada |
Yoshi Tannamuri | Laughing Bacchus Wine Cellars | Vancouver | BC | Canada |
Jean Fresnière | Mère Paillarde | Montréal | Québec | Canada |
Jytte Petersen | Simons bistro | Kobenhavn | Denmark | |
Data grid with 91 rows and 5 columns
The DevExpress Blazor Grid allows users to sort data as requirements dictate. The following user operations are available:
- Click a column header to sort data against one column. Subsequent clicks reverse the sort order. The sort glyph indicates the column's current sort order (ascending or descending).
- Hold Shift and click column headers to sort data by multiple columns.
- Hold Ctrl and click a column header to clear sorting by this column.
To disable sort operations, set the DxGrid.AllowSort or DxGridDataColumn.AllowSort property to false
(applied to the entire Grid or to an individual column).
Use the following API members to sort Blazor Grid data in code:
- DxGrid.ClearSort — Clears sort operations.
- DxGrid.SortBy — Sorts Grid data against a specified column.
- DxGridDataColumn.SortIndex — Specifies a column's position among sorted columns. If the property is set to
-1
, grid data is not sorted by this column. - DxGridDataColumn.SortOrder — Specifies a column's sort order (ascending or descending).
- DxGridDataColumn.SortMode — Specifies how a column's data is sorted (by value, by display text, or custom logic is used)
You can focus a column header with a keyboard and press Space, Shift+Space, or Ctrl+Space to change sort criteria.
For more information, refer to the following topic: Sort Data.