|
Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Yes, you can bind the business object to a grid through a BusinessBindingSource and then bind the business object to the textboxes. The grid should have an event that you can handle such as RowSelected, SelectedRowIndexChanged, AfterRowSelect, or something to that effect. In a handler for that method, Navigate() the business object to the row and the textboxes bound to the business object will reflect the selected record in the business object.
|