or
private
void
detail_ItemDataBinding(
object
sender, EventArgs evt)
{
Telerik.Reporting.Processing.DetailSection detailSection = (Telerik.Reporting.Processing.DetailSection)sender;
DataRowView row = (DataRowView)detailSection.DataObject.RawData;
Telerik.Reporting.Processing.TextBox txtEntityName = (Telerik.Reporting.Processing.TextBox)detailSection.ChildElements.Find(
"txtEntityName"
,
true
)[0];
if
(txtEntityName !=
null
)
txtEntityName.Value = row[
"EntityName"
];
}