Rows in ASP.NET Core Tree Grid Component
The row represents record details fetched from data source.
Customize rows
You can customize the appearance of a row by using the rowDataBound event. The rowDataBound event triggers for every row. In the event handler, you can get the args which contains details of the row.
Styling alternate rows
You can change the treegrid’s alternative rows’ background color by overriding the .e-altrow class.
.e-treegrid .e-altrow {
background-color: #ffd800;
}Refer to the following example.
NOTE
Refer to our
ASP.NET Core Tree Gridfeature tour page for its groundbreaking feature representations. You can also explore our ASP.NET Core Tree Grid exampleASP.NET Core Tree Grid exampleto learn how to present and manipulate data.