Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
440
How to get the data by using key in xamgrid
posted

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.

Parents
No Data
Reply
  • 138253
    Offline posted

    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.

Children
No Data