Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Easy Heading Macro
headingIndent40
navigationTitleOn this page
selectorh2,h3
wrapNavigationTexttrue
navigationExpandOptiondisable-expand-collapse


Info
iconfalse
titleIntroduction

This document provides information on how to format individual cells in a DataGrid dynamically and print them in a Report.

Info
iconfalse

Quick video tutorial

How to Use

...

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.

...