Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Get Binding Info

9620959731
Discoverer
0 Likes
1,101

Hi Experts,
What is the diffrence between getBinding and getBindingInfo

1 ACCEPTED SOLUTION
Read only

boghyon
Product and Topic Expert
Product and Topic Expert
0 Likes
1,029

The API "getBindingInfo" is protected! I.e. it is NOT intended to be used for application development unless you're extending a ManagedObject (e.g. when creating custom controls).

On the other hand, the API "getBinding" is a public method which you can use to access the existing instance of "sap.ui.model.List/PropertyBinding" depending on which argument was passed.

2 REPLIES 2
Read only

boghyon
Product and Topic Expert
Product and Topic Expert
0 Likes
1,030

The API "getBindingInfo" is protected! I.e. it is NOT intended to be used for application development unless you're extending a ManagedObject (e.g. when creating custom controls).

On the other hand, the API "getBinding" is a public method which you can use to access the existing instance of "sap.ui.model.List/PropertyBinding" depending on which argument was passed.

Read only

0 Likes
1,029

Thank you.