InterviewSolution
Saved Bookmarks
| 1. |
How Do You Call A Knockout Method Using Data Bind Concept ? |
|
Answer» Knockout allows US to use the data-bind CONCEPT to hook into user CONTROL object events such as ‘click’. To do this, we use a ‘data-bind’ with the method we want to call as the click parameter ‘data-bind=”click: callSomeMethod”’. Knockout allows us to use the data-bind concept to hook into user control object events such as ‘click’. To do this, we use a ‘data-bind’ with the method we want to call as the click parameter ‘data-bind=”click: callSomeMethod”’. |
|