React Grid Sorting
La función Ignite UI for React Data Sorting en React Grid está habilitada a nivel de columna, lo que significa que IgrGrid
puede tener una combinación de columnas ordenables y no ordenables. Realizar acciones de clasificación React le permite cambiar el orden de visualización de los registros según criterios específicos.
React Grid Sorting Overview Example
Esto se hace a través de la entrada sortable
. Con la clasificación IgrGrid
, también puede configurar la propiedad sortingIgnoreCase
para realizar una clasificación que distinga entre mayúsculas y minúsculas:
<IgrColumn field="ProductName" header="Product Name" dataType="string" sortable="true"></IgrColumn>
Sorting Indicators
Tener una cierta cantidad de columnas ordenadas puede resultar realmente confuso si no hay ninguna indicación del orden de clasificación.
IgrGrid
proporciona una solución a este problema indicando el índice de cada columna ordenada.
Sorting through the API
Puede ordenar cualquier columna o una combinación de columnas a través de la API IgrGrid
utilizando el método sort
IgrGrid
:
import { SortingDirection } from "igniteui-react-grids";
// Perform a case insensitive ascending sort on the ProductName column.
gridRef.current.sort([{ fieldName: 'ProductName', dir: SortingDirection.Asc, ignoreCase: true }]);
// Perform sorting on both the ProductName and Price columns.
gridRef.current.sort([
{ fieldName: 'ProductName', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'Price', dir: SortingDirection.Desc }
]);
[!Note] Sorting is performed using our
DefaultSortingStrategy
algorithm. AnyIgrColumn
orISortingExpression
can use a custom implementation of theISortingStrategy
as a substitute algorithm. This is useful when custom sorting needs to be defined for complex template columns, or image columns, for example.
Al igual que con el comportamiento de filtrado, puede borrar el estado de clasificación utilizando el método clearSort
:
// Removes the sorting state from the ProductName column
gridRef.current.clearSort('ProductName');
// Removes the sorting state from every column in the Grid
gridRef.current.clearSort();
[!Note] The
sortStrategy
of theIgrGrid
is of different type compared to thesortStrategy
of theIgrColumn
, since they work in different scopes and expose different parameters.
[!Note] The sorting operation DOES NOT change the underlying data source of the
IgrGrid
.
Initial Sorting State
Es posible establecer el estado de clasificación inicial de IgrGrid
pasando una matriz de expresiones de clasificación a la propiedad sortingExpressions
de IgrGrid
.
useEffect(() => {
gridRef.current.sortingExpressions = [
{ fieldName: 'UnitsInStock', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'ProductName', dir: SortingDirection.Desc }
];
}, [])
[!Note] If values of type
string
are used by a column ofdataType
Date
, theIgrGrid
won't parse them toDate
objects and usingIgrGrid
Sorting
won't work as expected. If you want to usestring
objects, additional logic should be implemented on an application level, in order to parse the values toDate
objects.
Sorting Indicators Templates
El icono del indicador de clasificación en el encabezado de la columna se puede personalizar mediante una plantilla. Las siguientes propiedades están disponibles para crear plantillas del indicador de clasificación para cualquier estado de clasificación (ascendente, descendente, ninguno):
sortHeaderIconTemplate
: vuelve a crear una plantilla para el icono de clasificación cuando no se aplica ninguna clasificación.
function sortHeaderIconTemplate(ctx: IgrGridHeaderTemplateContext) {
return (
<>
<IgrIcon name='unfold_more'></IgrIcon>
</>
);
}
<IgrGrid sortHeaderIconTemplate={sortHeaderIconTemplate}></IgrGrid>
sortAscendingHeaderIconTemplate
: vuelve a crear una plantilla para el icono de clasificación cuando la columna está ordenada en orden ascendente.
function sortAscendingHeaderIconTemplate(ctx: IgrGridHeaderTemplateContext) {
return (
<>
<IgrIcon name='expand_less'></IgrIcon>
</>
);
}
<IgrGrid sortAscendingHeaderIconTemplate={sortAscendingHeaderIconTemplate}></IgrGrid>
sortDescendingHeaderIconTemplate
: vuelve a crear una plantilla para el icono de clasificación cuando la columna se ordena en orden descendente.
function sortDescendingHeaderIconTemplate(ctx: IgrGridHeaderTemplateContext) {
return (
<>
<IgrIcon name='expand_more'></IgrIcon>
</>
);
}
<IgrGrid sortDescendingHeaderIconTemplate={sortDescendingHeaderIconTemplate}></IgrGrid>
Styling
Además de los temas predefinidos, la cuadrícula se puede personalizar aún más configurando algunas de las propiedades CSS disponibles. En caso de que desee cambiar algunos de los colores, primero debe establecer una clase para la cuadrícula:
<IgrGrid className="grid">
</IgrGrid>
Luego establezca las propiedades CSS relacionadas con esta clase:
.grid {
--ig-grid-sorted-header-icon-color: #ffb06a;
--ig-grid-sortable-header-icon-hover-color: black;
}
Demo
API References
Additional Resources
- Virtualización y rendimiento
- Paginación
- Clasificación
- resúmenes
- Columna en movimiento
- Fijación de columnas
- Cambio de tamaño de columna
- Selección
Nuestra comunidad es activa y siempre da la bienvenida a nuevas ideas.