I want to bind a datagridview row collection to a report. Can I call sub-object values from my binding expression? This is what I am currently trying to do:
This is not working. Is what I am trying to do possible? If so, how?
1 Answer, 1 is accepted
0
Svetoslav
Telerik team
answered on 17 May 2007, 11:46 AM
Hi CmdJerry,
The 1st version of the Telerik Reporting supports binding expression syntax similar to these that the DataColumn.Expression use. You can learn more about the expressions from the "Item Binding Expressions" topic in our documentation.
From the expression you have pasted it seems that you are using the MS SQL Server Reporting Services syntax, but not at all (MS SSRS expressions do not use any square bracket []). Still, it won't work in the Telerik Reporting as we don't have such global objects like Fields.
You can use something like this - suppose you have a field Name of type string:
=First(Name)
that when evaluated the aggregate First will return the 1st value in the column Name.