API/CodeSamples/EqualsPopupDestinations.md
... ...
@@ -27,7 +27,7 @@ public class CustomAdHocConfig : FileSystemAdHocConfig {
27 27
AdHocSettings.AdHocConfig = new CustomAdHocConfig();
28 28
AdHocSettings.PrintMode = PrintMode.Html2PdfAndHtml;
29 29
AdHocSettings.ChartingEngine = ChartingEngine.HtmlChart;
30
- AdHocSettings.EqualsPopupDestinations["MyCustomFilters"] = new string[] { "ShipCountry", "ShipCity", "ShipRegion" }; //relevent setting
30
+ AdHocSettings.EqualsPopupDestinations["MyCustomFilters"] = new string[] { "ShipCountry", "ShipCity", "ShipRegion" }; //relevent setting. The string in the Key must match the name of the custom filters page. The string array values represent the columns that are associated with the page.
31 31
```
32 32
33 33
##Global.asax (VB.NET)
... ...
@@ -52,5 +52,5 @@ Public Class CustomAdHocConfig
52 52
AdHocSettings.ShowBetweenDateCalendar = True
53 53
AdHocSettings.AdHocConfig = New CustomAdHocConfig()
54 54
AdHocSettings.ChartingEngine = ChartingEngine.HtmlChart
55
- AdHocSettings.EqualsPopupDestinations("MyCustomFilters") = New String() {"ShipCountry", "ShipCity", "ShipRegion" } // relevent setting
55
+ AdHocSettings.EqualsPopupDestinations("MyCustomFilters") = New String() {"ShipCountry", "ShipCity", "ShipRegion" } // relevent setting. The string in the Key must match the name of the custom filters page. The string array values represent the columns that are associated with the page.
56 56
```
... ...
\ No newline at end of file