'Telerik Reporting - Dynamic
In telerik reporting, is this possible to bind my data dynamically from database with space and special characters in telerik table column name? is there any alternate solution?
Solution 1:[1]
Telerik Reporting supports referencing the fields whose names contain spaces and special chars like that (sample expression):
=Fields.[My field'name]
You can also reference fields dynamically passing the name of the field using the Fields function (for example, pass the name using a report parameter):
=Fields(Parameters.FieldName.Value)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Milen Elkin |