Guest User

Untitled

a guest
Sep 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. KnockoutJS Options Bindings
  2. var viewModel = {
  3. firstSelectListIndex : ko.observable(), // bound to the first select list value
  4. secondSelectListIndex : ko.observable(),
  5. ...
  6. };
  7.  
  8. viewModel.firstSelectListIndex.subscribe(function(newValue) {
  9. // your code
  10. });
Add Comment
Please, Sign In to add comment