Page Tree
Other Releases
Easy Heading Macro | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
Info | ||||
---|---|---|---|---|
| ||||
This document provides information on how to format individual cells in a DataGrid dynamically and print them in a Report. | ||||
Info | ||||
| ||||
...
To use this feature, you will need to add a callback function into in ClientMain Class class that is called every time the DataGrid is modified.
...
Code Block |
---|
public void OnReportCustomTableCell(string reportName, string columnName, System. Data.DataRow row, System.Windows.Documents.TableCell tableCell) { // Insert Code Here } |
In this example, we will add the following table to our Report:
Sample Table.
It is possible to dynamically color the Table Cells using the input parameters of the Callback Function. You can filter by ColumnName and Rows.
...