This post: Knockout: valueAccessor vs viewModel on custom binding handlers? makes the following statement about how the viewModel observables are bound within a custom binding handler: "Any observable that has its value accessed will create a dependency."
How do I access a value from the observable X on the viewModel inside a custom binding handler without creating a dependency that makes the custom binding handler to update if X is later changed?
I made a Fiddle that showcases this. The line viewModel.xxx(); creates a dependency to the "xxx" observable.
viewModel.xxx.peek()as well - RP Niemeyer