The Blazor Data Grid component is used for displaying large volumes of data. Modern and more complex grids ensure smooth UX and bring an array of features for manipulating tabular data. There is an intuitive API, theming, branding, filtering, sorting, data selection, Excel-style filtering, and many more.
The Ignite UI for Blazor Data Table / Data Grid is a tabular Blazor grid component that allows you to quickly bind and display your data with little coding or configuration. Features of the Blazor data grid in our toolbox include filtering, sorting, templates, row selection, row grouping, row pinning, movable columns, virtualization, Master-Detail, and much more.
The Blazor tables are optimized for speed and performance, with the ability to handle millions of rows and columns, and real-time updates in an instant.
Blazor Data Grid Example
In this Ignite UI for Blazor Grid example, you can see how users can do both basic and excel-style filtering, live-data sorting, and use grid summaries as well as cell templating. The demo also includes paging set to display 10 items per page.
Getting Started with Blazor Data Grid
Dependencies
To get started with the Blazor Data Grid, first you need to install the IgniteUI.Blazor package.
Please refer to these topics on adding the IgniteUI.Blazor package:
The Id property is a string value and is the unique identifier of the grid which will be auto-generated if not provided, while data binds the grid, in this case to local data.
The AutoGenerate property tells the grid to auto generate the grid’s IgbColumn components based on the data source fields. It will also try to deduce the appropriate data type for the column if possible. Otherwise, the developer needs to explicitly define the columns and the mapping to the data source fields.
Editable Blazor Grid
Each operation for grid editing includes batch operations, meaning the API gives you the option to group edits into a single server call, or you can perform grid edit / update operations as they occur with grid interactions. Along with a great developer experience as an editable grid with CRUD operations, the grid includes Excel-like keyboard navigation. Common default grid navigation is included, plus the option to override any navigation option to meet the needs of your customers. An editable grid in with a great navigation scheme is critical to any modern line of business application, with the Ignite UI grid we make it easy.
IgbColumn is used to define the grid’s columns collection and to enable features per column like sorting and filtering. Cell, header, and footer templates are also available.
Defining Columns
Let’s turn the AutoGenerate property off and define the columns collection in the markup:
//In JavaScript:igRegisterScript("UpperCaseTemplate", (ctx) => { var html = window.igTemplating.html; return html`${this.formatUppercase(ctx.column.field)}`;}, false)function formatUppercase(value) { return value.toUpperCase();}
Cell Template
When cell template is set it changes all the cells in the column. The context object provided in the template consists of the cell value provided implicitly and the cell object itself. It can be used to define a template where the cells’ text could be formatted e.g. as title case.
//In JavaScript:igRegisterScript("NameCellTemplate", (ctx) => { var html = window.igTemplating.html; return html`${this.formatTitleCase(ctx.implicit)}`;}, false);function formatTitleCase(value) { return value.toLowerCase().replace(/\b\w/g, c => c.toUpperCase());}
In the snippet above we take a reference to the implicitly provided cell value. This is sufficient if you just want to present some data and maybe apply some custom styling or pipe transforms over the value of the cell. However even more useful is to take the Cell instance itself as shown below:
//In JavaScript:igRegisterScript("NameCellTemplate", (ctx) => { var html = window.igTemplating.html; return html` <span tabindex="0" @keyup=${(e) => this.deleteRow(e, ctx.cell.id.rowIndex)}> ${this.formatTitleCase(ctx.cell.value)}</span> `;}, false);igRegisterScript("SubscriptionCellTemplate", (ctx) => { var html = window.igTemplating.html; if (ctx.cell.value) { return html` <input type="checkbox" checked /> `; } else { return html` <input type="checkbox"/> `; }}, false);function deleteRow(e, rowIndex) { if (e.code === "Delete") { this.grid.deleteRow(rowIndex); }}function formatTitleCase(value) { return value.toLowerCase().replace(/\b\w/g, c => c.toUpperCase());}
Note:
The grid exposes a default handling for number, string, date and boolean column types. For example, the column will display check or close icon, instead of true/false by default, for boolean column type.
When properly implemented, the cell editing template also ensures that the cell’s EditValue will correctly pass through the grid editing event cycle.
Cell Editing Template
The column also accepts one last template that will be used when a cell is in edit mode. As with the other column templates, the provided context object is again the cell value and the cell object itself. Of course in order to make the edit-mode template accessible to end users, you need
to set the Editable property of the column to true.
//In JavaScript:igRegisterScript("PriceCellTemplate", (ctx) => { var html = window.igTemplating.html; return html` <label> Enter the new price tag </label> <input name="price" type="number" value="${ctx.cell.value}" @change=${(e) => this.updateValue(e, ctx.cell.value)} /> `;}, false);function updateValue(event, value) {}
Make sure to check the API for the IgbCellType in order to get accustomed with the provided properties you can use in your templates.
Column Template API
Each of the column templates can be changed programmatically at any point through the IgbColumn object itself. For example in the code below, we have declared two templates for our user data. In our TypeScript code we’ll get references to the templates themselves and then based on some condition we will render the appropriate template for the column in our application.
<IgbGrid ColumnInit=OnColumnInit />@code { public void OnColumnInit(IgbColumnComponentEventArgs args) { IgbColumn column = args.Detail; // Return the appropriate template based on some condition. // For example saved user settings, viewport size, etc. column.BodyTemplateScript = "NormalViewTemplate"; }}
//In JavaScript:igRegisterScript("NormalViewTemplate", (ctx) => { var html = window.igTemplating.html; return html` <div class="user-details">${ctx.cell.value}</div> <user-details-component></user-details-component> `;}, false);igRegisterScript("SmallViewTemplate", (ctx) => { var html = window.igTemplating.html; return html` <div class="user-details-small" style="color: blue">${ctx.cell.value}</div> `;}, false);
Column properties can also be set in code in the ColumnInit event which is emitted when the columns are initialized in the grid.
The code above will make the ProductName column sortable and editable and will instantiate the corresponding features UI (like inputs for editing, etc.).
Custom Display Format
There are optional parameters for formatting:
Format - determines what date/time parts are displayed, defaults to 'mediumDate', equivalent to ‘MMM d, y’
Timezone - the timezone offset for dates. By default uses the end-user’s local system timezone
DigitsInfo - decimal representation objects. Default to 1.0-3
To allow customizing the display format by these parameters, the PipeArgs input is exposed. A column will respect only the corresponding properties for its data type, if PipeArgs is set. Example:
The OrderDate column will respect only the Format and Timezone properties, while the UnitPrice will only respect the DigitsInfo.
All available column data types could be found in the official Column types topic.
Complex Data Binding
Complex Data Binding allows for seamless interaction with multi-level data, complex, real-world datasets, object-oriented data modules, etc. Using our Blazor Data Grid, you can easily bind to complex objects (including data structures that nest deeper than one level). This happens through a path of properties in the data record.
Take a look at the following data model:
public class AminoAcid{ public string Name { get; set; } public AminoAbbreviation Abbreviation { get; set; } public AminoWeight Weight { get; set; }}public class AminoAbbreviation{ public string Short { get; set; } public string Long { get; set; }}public class AminoWeight{ public double Molecular { get; set; } public double Residue { get; set; }}
For example, in order to display the weights of a given amino acid in the grid the following snippet will suffice
An alternative way to bind complex data, or to visualize composite data (from more than one column) in the IgbGrid is to use a custom body template for the column. Generally, one can:
use the value of the cell, that contains the nested data
The flat data binding approach is similar to the one that we already described above, but instead of cell value we are going to use the Data property of the IgbGridRow.
Since the Blazor grid is a component for rendering, manipulating and preserving data records, having access to every data record gives you the opportunity to customize the approach of handling it. The data property provides you this opportunity.
Below is the data that we are going to use:
public class CustomersData : List<CustomersDataItem>{ public CustomersData() { this.Add(new CustomersDataItem() { ID = "ALFKI", CompanyName = "Alfreds Futterkiste", ContactName = "Maria Anders", ContactTitle = "Sales Representative", Address = "Obere Str. 57", City = "Berlin", Region = "East", PostalCode = "12209", Country = "Germany", Phone = "030-0074321", Fax = "030-0076545" }); }}
Using code snippets from previous section will result in the following example of IgbGrid
Keyboard Navigation
Keyboard navigation of the IgbGrid provides a rich variety of keyboard interactions for the user. It enhances accessibility and allows intuitive navigation through any type of elements inside (cell, row, column header, toolbar, footer, etc.).
Styling Blazor Grid
Note:
The grid uses css grid layout, which is not supported in IE without prefixing, consequently it will not render properly.
In addition to the predefined themes, the grid could be further customized by setting some of the available CSS properties. In case you would like to change the header background and text color, you need to set a class for the grid first:
<IgbGrid Class="grid"></IgbGrid>
Then set the --header-background and --header-text-color CSS properties for that class:
Currently we do not support mixing of column widths with % and px.
When trying to filter a column of type number
If a value different than number is entered into the filtering input, NaN is returned due to an incorrect cast.
Grid width does not depend on the column widths
The width of all columns does not determine the spanning of the grid itself. It is determined by the parent container dimensions or the defined grid’s width.
Grid nested in parent container
When grid’s width is not set and it is placed in a parent container with defined dimensions, the grid spans to this container.
Columns have a minimum allowed column width. Depending on the --ig-size CSS variable, they are as follows: “small”: 56px “medium”: 64px “large ”: 80px
If width less than the minimum allowed is set it will not affect the rendered elements. They will render with the minimum allowed width for the corresponding --ig-size. This may lead to an unexpected behavior with horizontal virtualization and is therefore not supported.
Row height is not affected by the height of cells that are not currently rendered in view.
Because of virtualization a column with a custom template (that changes the cell height) that is not in the view will not affect the row height. The row height will be affected only while the related column is scrolled in the view.