Reputation: 1
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?
Upvotes: 0
Views: 307
Reputation: 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)
Upvotes: 0