How to get the bound widgets from the DataCollection?

Is there a way to get the bound widgets form the DataCollection? In the source code I see that there’s should be an internal _bind_hash array but this seems not to be exposed by the API.

What I want to accomplish is to handle errors from a proxy. The current setup: Form is bound to a DataCollection. This DataCollection has a proxy. The Save method on the form calls the Save on the proxy. However, the view property on the save method is the DataCollection. If I can get the bound components I can easily handle errors from the save method on the proxy.

Hey @zevenbergm, unfortunately there is no public way to get the bound components directly. What you can do, however, is you can make a property where you will be storing all of the bound components, updating it every time after you perform a bind: https://snippet.webix.com/5g2w959g.

@Dzmitry: Thanks for the response. Much appreciated! I’ll do it like that.