Enums: DataGrid
DataGridFilterMethod
- Containssearch for any occurrence (default)
- StartsWithsearch only the beginning
- EndsWithsearch only the ending
- Equalssearch must match the entire value
- NotEqualsopposite of Equals
DataGridSortMode
- SingleThe data grid can only be sorted by one column at a time.
- MultipleThe data grid can sorted by multiple columns.
DataGridSelectionMode
- SingleThe data grid only supports a row selected at a time.
- MultipleThe data grid enables multiple rows to be selected.
DataGridCommandMode
- DefaultDefault state which means that both defined commands and button row will render.
- CommandsOnly defined commands will render.
- ButtonRowOnly button row will render.
DataGridPagerPosition
- TopPositions the pagination above the table.
- BottomPositions the pagination below the table.
- TopAndBottomPositions the pagination on above and below the table.
DataGridAggregateRowPosition
- TopPositions the aggregate row above the table data as the last table header row.
- BottomPositions the aggregate row in the footer of the table.
- TopAndBottomPositions the aggregate row with both Top and Bottom definition.
SortDirection
Specifies the direction of a sort operation.
- NoneNo sorting will be applied.
- AscendingSorts in ascending order.
- DescendingSorts in descending order.
DataGridSelectReason
Defines the Select Reason of the DataGrid Selection.
- RowClickRow has been clicked.
- MultiSelectClickMulti select has been triggered.
- MultiSelectAllMulti select all has been triggered.
DetailRowTriggerType
Defines the DetailRowTriggerType of the DataGrid's DetailRow.
- ManualTrigger is manually controlled by invoking the Datagrid's- ToggleDetailRow
- RowClickTriggers on row click.
PagerElementPosition
Sets a Pager Element's position.
- DefaultPositions the element at the default position. If both ButtonRowPosition and PaginationPosition are set to default. Whether ButtonRow is shown or not will make it so the Pagination is positioned accordingly.
- StartPositions the element at the start.
- CenterPositions the element at the center.
- EndPositions the element at the end.