Category / Section
How to format rows and cells in TreeGrid
In TreeGrid it is possible to format a specific row or a cell using the queryCellInfo client side event. This event will be triggered while rendering each cell in TreeGrid.
The below code example explains how to highlight a specific row and cell in TreeGrid:
<div id="TreeGridContainer" style="height:400px;width:100%"></div>
<script type="text/javascript">
$(function () {
$("#TreeGridContainer").ejTreeGrid({
dataSource: projectData,
queryCellInfo: function (args) {
//To Highlight a row
if (args.data.index == 4)
$(args.cellElement).css({ "backgroundColor": "yellow" });
//To Highlight a cell
if ((args.data.index == 7 && args.column.field == "taskName") || (args.data.index == 2 && args.column.field == "startDate"))
$(args.cellElement).css({ "backgroundColor": "Green" });
},
})
});
</script>

A simple sample to highlight a row and cell, is available in the following link,