f1ef698447a2cb4ebc040b4f3d0bc36eec209736
API/CodeSamples/ShowJoinAliasTextboxes.md
| ... | ... | @@ -22,7 +22,7 @@ public class CustomAdHocConfig : Izenda.AdHoc.DatabaseAdHocConfig |
| 22 | 22 | //Creates a connection to Microsoft SQL Server |
| 23 | 23 | AdHocSettings.SqlServerConnectionString = "INSERT_CONNECTION_STRING_HERE"; |
| 24 | 24 | Izenda.AdHoc.AdHocSettings.AdHocConfig = new CustomAdHocConfig(); |
| 25 | - AdHocSettings.ShowJoinDropDown = true; //the relevant setting |
|
| 25 | + AdHocSettings.ShowJoinAliasTextboxes = true; //the relevant setting |
|
| 26 | 26 | HttpContext.Current.Session["ReportingInitialized"] = true; |
| 27 | 27 | } |
| 28 | 28 | } |
| ... | ... | @@ -45,7 +45,7 @@ Public Class CustomAdHocConfig |
| 45 | 45 | AdHocSettings.LicenseKey = "INSERT_LICENSE_KEY_HERE" |
| 46 | 46 | AdHocSettings.SqlServerConnectionString = "INSERT_CONNECTION_STRING_HERE" |
| 47 | 47 | Izenda.AdHoc.AdHocSettings.AdHocConfig = New CustomAdHocConfig() |
| 48 | - AdHocSettings.ShowJoinDropDown = True 'The relevant setting |
|
| 48 | + AdHocSettings.ShowJoinAliasTextboxes = True 'The relevant setting |
|
| 49 | 49 | HttpContext.Current.Session("ReportingInitialized") = True |
| 50 | 50 | End Sub |
| 51 | 51 | End Class |