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) { ...
0
votes
0answers
77 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
3answers
770 views

trigger event after several ajax calls succeeded

I wonder which is the best approach to trigger an event after several (unordered) ajax calls finished. To make it a bit clearer, I would like to call a Method doSomethingGreat() which triggers ...
1
vote
2answers
487 views

Trigger custom event in Rx JS

I'm trying to understand Reactive JS. In JQuery I can trigger custom events as $(document).bind('eventbus', function(e, d) { console.log(d);}); $(document).trigger('eventbus', 'test'); and pass ...