The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

How to combine Rx.js subscription with Jquery Promise?

I use Rx.js and JqueryPromises I have run into a situation where i call a method to process an event published by Rx. This method however returns a promise. eventStream.Subscribe(function(e) { ...
2
votes
0answers
155 views

Can't find assembly - System.Reactive.Debugger

I have installed visual studio 2010 express and then Reactive Extensions 2.0. When I start my app in debug mode, part of code where reactive extensions is used following exception is thrown: The ...
2
votes
0answers
395 views

RxJS: Recursive list of observables and single observer

I've been having some trouble with a recursive chain of observables. I am working with RxJS, which is currently in version 1.0.10621, and contains most basic Rx functionality, in conjunction with Rx ...
1
vote
0answers
66 views

rx javascript periodic event ignore until handled first

maybe I missed purpose of RX for javascript library, but I think it should handle this scenario nicely. I would like to have periodic events generated through observable. Subscriber should take first ...
1
vote
0answers
110 views

RxJS multiple subscriptions for Observable.Interval

Is there any solution like following one for RxJS? Is it possible to invoke subscribers's OnNexts on different threads in Rx? P.S. My first, naive approach(in CoffeeScript) had obviously failed: ...
0
votes
0answers
73 views

jqGrid and Rx Reactive javascript extensions

I am trying to create an Observable of onSelectRow events in jqGrid using the syntax below: grid.jqGrid().toObservable("onSelectRow").Select(function (event) { return ...
0
votes
0answers
191 views

How to implement MVVM in a html page, that includes a map from Openlayer

I'am new to MVVM and openlayer and I've crated a html contains openlayer map, i need help to implement that using MVVM can anyone help me.. The html page created is given below.. Script: var map, ...