Hello Devex,
I have an XrTable which is bind from data member in mvc. table has many number of rows.
i want to get the value of one rows in all the rows of a table and get its value and show on to the label.
so how could i get that.
i try
var str1 ="";
foreach (XRTableRow row in this.xrTable5.Rows)
{
foreach (XRTableCell cell in row.Cells)
{
if (cell.Text == "Cash")
{
str1 = cell.Text;
}
}
}
str1 = xrTableCell68.Text;
this code on label before_print event but nothing got any success. please suggest the solution for this .