New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Coloring the Alternating Rows of a Grid Exported to Excel
Environment
Product Version | 2022.2.621 |
Product | Grid for ASP.NET Core |
Description
How can I set the background color of the alternating rows of an exported Grid to Excel when working with Telerik UI for ASP.NET Core?
Solution
Use the background
option of the Workbook cell to set the background color of the alternating table rows.
- Handle the
ExcelExport
event of the Grid. - Get the Workbook sheet and loop through the array of the sheet rows.
- Loop through the cells of the even rows.
- Specify the desired background color.
Index.cshtml
@(Html.Kendo().Grid<Kendo.Mvc.Examples.Models.ProductViewModel>()
.Name("grid")
.Columns(columns =>
{
columns.Bound(p => p.ProductName);
columns.Bound(p => p.UnitPrice);
columns.Bound(p => p.UnitsOnOrder);
columns.Bound(p => p.UnitsInStock);
})
.Events(e => e.ExcelExport("excelExport"))
.ToolBar(tools => tools.Excel())
.Pageable()
.Sortable()
.Scrollable()
.Groupable()
.Excel(excel => excel
.FileName("Kendo UI Grid Export.xlsx")
.Filterable(true)
)
.Reorderable(r => r.Columns(true))
.Resizable(r => r.Columns(true))
.ColumnMenu()
.DataSource(dataSource => dataSource
.Ajax()
.PageSize(20)
.Read(read => read.Action("Excel_Export_Read", "Grid"))
)
)
Refer to this REPL for a runnable example.