Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
The data binding will only work one-way with AJAX controls. You will need to manually copy the data from the control back to the business object when the control makes an async request. Other than that, you still gain the full benefit of the business objects and all of the data access. You can easily get the one-way binding to work if you implement the IBusinessBindable interface on any set of AJAX controls, and if the controls don't copy the data back to the business object until the entire page posts back, then the two-way data binding will work as well.
|