Hi There,
How can I bind field value to the data in my business object, and do it in code-behind?
Cheers
Jonathan
Hello Robson,
Thank you for your post.
I have been looking into it and I am not sure that I understand correctly what you are trying to achieve. If I understand correctly your requirement the following forum thread could be of help to you, please take a look at the following link:
http://es.infragistics.com/community/forums/t/96654.aspx
where similar functionality was achieved.
Please look at the sample application from this thread and if it doesn’t cover your expectations feel free to modify it, so you reproduce the described behavior and send it back to me for further investigation or provide me with more details about your requirements in order to be able to investigate it further for you and support you.
Looking forward to hearing from you.
I think the link you posted is the link to this article?
If we have the following class...
class A
{
B Child {get; set;}
}
class B
int Value {get; set;}
in code how can I bind an infragistics Field to the Value field of class B, so the binding path would be Child.Value I think.