6f5416e6487de3b2c9f9d09468eed51e3db8659a
FAQ/ProcessDataSet.md
| ... | ... | @@ -20,7 +20,7 @@ The first parameter is the System.Data.DataSet retrieved from the database. It i |
| 20 | 20 | |
| 21 | 21 | In addition to manipulating the way your data looks, post-processing can assist with encryption, logging, localization, etc. The ProcessDataSet method will be called after your data has been retrieved from the database, but before it is displayed. This means you can manipulate the data however you want in order to display it as you want. For example, you can replace encrypted data values with decrypted ones. Let's explore post-processing with the ProcessDataSet method further. |
| 22 | 22 | |
| 23 | -##Example: Using post-processing |
|
| 23 | +###Example: Using post-processing |
|
| 24 | 24 | |
| 25 | 25 | For example, we want to rename the "CA" region code to "California", but only in the results grid. |
| 26 | 26 | Without any post-processing we have the following report: |
| ... | ... | @@ -85,7 +85,7 @@ When we run our post-processor code we will get the expected result: |
| 85 | 85 | As you can see, "CA" was replaced by "California" in the grid but the chart still displays "CA". |
| 86 | 86 | Using this approach, you can change data retrieved from the database in many ways. |
| 87 | 87 | |
| 88 | -##Example: Dynamically changing time zones |
|
| 88 | +###Example: Dynamically changing time zones |
|
| 89 | 89 | |
| 90 | 90 | This code sample show how to change TimeZone dynamically from the code. This allows you to show relevant Date values according to the current user local time. |
| 91 | 91 | |
| ... | ... | @@ -144,7 +144,7 @@ Private Function GetLocalTime(utcTime As DateTime) As DateTime |
| 144 | 144 | End Function |
| 145 | 145 | ``` |
| 146 | 146 | |
| 147 | -##Example: Fetching a Column Used in a Report |
|
| 147 | +###Example: Fetching a Column Used in a Report |
|
| 148 | 148 | |
| 149 | 149 | Reports (report parts) can be referenced using the ReportSet.Reports collection. Here is a list of report parts: |
| 150 | 150 | - Detail |