In Asp.Net DataBinder.Eval ( x, sortExpression) will give the data for object x which is in the place of sortexpression. like(abc.xyz is the sortexpression) and (abc is the object).
Is it possible to get the data in xamgrid. i have x and sortexpression in our case it was column.key but i am not able to get how to get DataBinder.Eval.
Hello,
Thank you for your post. I have been looking into it and I can suggest yo uuse the following code:
xamGrid1.Rows[3].Cells["Age"].Value;
this way you will get the value of the"Age" column of the third Row.
Hope this helps you.