Clasificación de cuadrícula de árbol de Web Components
La característica de ordenación de datos de Ignite UI for Web Components en la cuadrícula de árbol de Web Components está habilitada a nivel de columna, lo IgcTreeGridComponent
que significa que puede tener una combinación de columnas ordenables y no ordenables. La realización de acciones de ordenación de Web Components permite cambiar el orden de visualización de los registros en función de los criterios especificados.
Web Components Tree Grid Sorting Overview Example
Esto se hace a través de la sortable
entrada. Con la ordenación, también puede establecer la propiedad para realizar la IgcTreeGridComponent
sortingIgnoreCase
ordenación entre mayúsculas y minúsculas:
<igc-column field="ProductName" header="Product Name" data-type="string" sortable="true"></igc-column>
Sorting Indicators
Tener una cierta cantidad de columnas ordenadas puede resultar realmente confuso si no hay ninguna indicación del orden de clasificación.
Proporciona IgcTreeGridComponent
una solución para 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 mediante el IgcTreeGridComponent
comando IgcTreeGridComponent
sort
método:
import { SortingDirection } from 'igniteui-webcomponents-grids';
// Perform a case insensitive ascending sort on the Category column.
this.treeGrid.sort([{ fieldName: 'Category', dir: SortingDirection.Asc, ignoreCase: true }]);
// Perform sorting on both the Category and Price columns.
this.treeGrid.sort([
{ fieldName: 'Category', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'Price', dir: SortingDirection.Desc }
]);
[!Note] Sorting is performed using our
DefaultSortingStrategy
algorithm. AnyIgcColumnComponent
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 Category column
this.treeGrid.clearSort('Category');
// Removes the sorting state from every column in the Tree Grid
this.treeGrid.clearSort();
[!Note] The
sortStrategy
of theIgcTreeGridComponent
is of different type compared to thesortStrategy
of theIgcColumnComponent
, since they work in different scopes and expose different parameters.
[!Note] The sorting operation DOES NOT change the underlying data source of the
IgcTreeGridComponent
.
Initial Sorting State
Es posible establecer el estado de ordenación inicial de la propiedad pasando una matriz de expresiones de ordenación a la IgcTreeGridComponent
sortingExpressions
propiedad de the IgcTreeGridComponent
.
public connectedCallback() {
this.treeGrid.sortingExpressions = [
{ fieldName: 'Category', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'Price', dir: SortingDirection.Desc }
];
}
[!Note] If values of type
string
are used by a column ofdataType
Date
, theIgcTreeGridComponent
won't parse them toDate
objects and usingIgcTreeGridComponent
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.
constructor() {
var grid = this.grid = document.getElementById('grid') as IgcTreeGridComponent;
grid.data = this.data;
grid.sortHeaderIconTemplate = this.sortHeaderIconTemplate;
}
public sortHeaderIconTemplate = (ctx: IgcGridHeaderTemplateContext) => {
return html`<igc-icon name="unfold_more"></igc-icon>`;
}
sortAscendingHeaderIconTemplate
: vuelve a crear una plantilla para el icono de clasificación cuando la columna está ordenada en orden ascendente.
constructor() {
var grid = this.grid = document.getElementById('grid') as IgcTreeGridComponent;
grid.data = this.data;
grid.sortAscendingHeaderIconTemplate = this.sortAscendingHeaderIconTemplate;
}
public sortAscendingHeaderIconTemplate = (ctx: IgcGridHeaderTemplateContext) => {
return html`<igc-icon name="expand_less"></igc-icon>`;
}
sortDescendingHeaderIconTemplate
: vuelve a crear una plantilla para el icono de clasificación cuando la columna se ordena en orden descendente.
constructor() {
var grid = this.grid = document.getElementById('grid') as IgcTreeGridComponent;
grid.data = this.data;
grid.sortDescendingHeaderIconTemplate = this.sortDescendingHeaderIconTemplate;
}
public sortDescendingHeaderIconTemplate = (ctx: IgcGridHeaderTemplateContext) => {
return html`<igc-icon name="expand_more"></igc-icon>`;
}
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:
<igc-tree-grid class="grid">
</igc-tree-grid>
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
Nuestra comunidad es activa y siempre da la bienvenida a nuevas ideas.