| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Reactive Extensions bindings for the KnockoutJS
Package: knockout.rx
PM> Install-Package knockout.rx
Or you can download it from Releases of the project.
For typeScript users typing definition could be found here.
var rxObservable = koSubscribable.toObservable(event?: string);var rxObservable = koObservableOrComputed.toObservableWithReplyLatest();Note: toObservableWithReplyLatest returns Rx observable that will notify every observer with latest (current) Ko observable (or computed) value once it subscribed.
var koObservable = rxObservable.toKoObservable(initialValue?: any);var koSubscribable = rxObservable.toKoSubscribable();Note: The knockout subscribable does not store last value as Knockout observable do, it used only for change notifications. Exactly like Rx observable.
| Back | FazBrowse Home | New Git URL |