I'm trying to create a Report that has a dynamically generated DataTable as its DataSource.
I’ve programmatically placed a DetailSection on the Report, and added a TextBox for each column of the DataTable to the DetailSection.
The TextBoxes are databinding, but I can’t figure out what the proper Expression would be to access the column data for each TextBox.
The ReportItem.DataObject.RawData for each TextBox is a DataRowView.
In the Immediate window in Visual Studio, I can access the column data from within the TextBox DataBinding handler with the following:
((System.Data.DataRowView)(((Telerik.Reporting.Processing.TextBox)sender).DataObject.RawData))["ID"]
Please tell me what Expression would access the column data.