The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
41 views

How to buffer/throttle element drag events with RxJS (Reactive Extensions for JavaScript)

I'd like to implement a scenario when certain things happen on a continuous source of events (dragging an element) - but with some buffering/throttling. I'd like to receive a notification let's say ...
0
votes
1answer
23 views

How to get a Promise like pattern with subscription in RxJS?

I am trying to figure out if the following is possible with any of the existing operators in RxJS, or if I need to roll my own extension: var x = // some observable sequence var y = // some ...
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
2answers
101 views

Reactive-Extensions / RxJS Implementatation to node.js

I simply want to implement https://github.com/Reactive-Extensions/RxJS to my node project. Surely, there is the npm-package available, but I see it less updated, less modules, and uses only min. ...
1
vote
1answer
51 views

RxJS is to events as promises are to async

In Requesting a clear, picturesque explanation of Reactive Extensions (RX)? I asked about what RX is all about, and I think, thanks to the provided answers I now got the idea. In the referenced ...
7
votes
2answers
753 views

Requesting a clear, picturesque explanation of Reactive Extensions (RX)?

For a long time now I am trying to wrap my head around RX. And, to be true, I am never sure if I got it - or not. Today, I found an explanation on http://reactive-extensions.github.com/RxJS/ which - ...
1
vote
1answer
55 views

I need to visualize a dynamic collection with JavaScript, can it be implemented with Reactive Extensions?

I am writing this Web application where I need to visualize filtered, sorted and paginated (on the server) collections through JavaScript (planning on using Isotope to present collections). These ...
0
votes
1answer
107 views

Can I observe additions to an array with rx.js?

fromArray Rx wiki on github coffee> rext = require 'rx' coffee> arr = [1..5] [ 1, 2, 3, 4, 5 ] ...
0
votes
1answer
386 views

How to use Reactive Extensions to cache, throttle, and relay multiple events?

I am trying to learn the new Reactive Extensions framework for .Net, and it sounds like the perfect solution for my application. After studying examples ( and being fairly weak with LINQ still ), I ...
0
votes
2answers
55 views

Where can I find the RXUI Javascript 'Time Flies' example?

About two years ago, there was an awesome RXUI-For-Web prototype from Microsoft Research, that came with an example html page that animated the text 'Time flies like an arrow' across your page as you ...
1
vote
0answers
67 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 ...
2
votes
0answers
157 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 ...
1
vote
0answers
111 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
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
0answers
194 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, ...
2
votes
0answers
400 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
1answer
300 views

How to publish the last value of an observable

Ok, I have a hot observable (a subject in this case) var subject = new Rx.Subject(); I want to create another observable that every time a new subscriptions is being made immediately fires out the ...
2
votes
1answer
202 views

Why are methods Observable.While and Observable.Prune in the Microsoft.Phone.Reactive namespace?

I noticed that the Observable.While and Observable.Prune methods are part of the Microsoft.Phone.Reactive namespace. Just curious as to why this is given these methods should be applicable to all OS?
0
votes
2answers
236 views

Using one subject to propagate completly different event streams through

I'm trying to integrate Rx into the SignalR library. To make things really shine I need to proxy all the different event streams through one subject. Of course, this should be transparent for the ...
0
votes
1answer
59 views

Rx Publish() breaks IObservable of XDocuments

I have the following Rx Query that produces a IObservable problem is it does not work with Publish() so as the number of subscribers increases so does the memmory load // Works Observable ...
2
votes
1answer
217 views

How do I update/add items in/to an IObservable<int> dynamically?

I have an observable collection to which I want to keep feeding objects and they should reach observers even after someone has subscribed to it (which ofcourse is the main aim of an observable). How ...
1
vote
1answer
111 views

How to buffer events with Rx extentions for JS

I wan't to get text change events from input but limit them to 3 per second. Rx support my wish? how can I achieve this ability?
0
votes
1answer
474 views

Multiple asynchronous public API calls (rails+node.js or reactive js)

I'm trying to make non-blocking calls to 3 public APIs, i.e website A,B,C and then forward the results back to the rails app as JSON datas. I asked if this is possible in node.js on another forum and ...
10
votes
1answer
2k views

SignalR vs. Reactive Extensions

Is SignalR the same thing is Reactive Extensions? Can you explain why or why not?
1
vote
1answer
107 views

Distinct between possible streams, looking for a clean solution

I'm trying to use RxJS in some GUI scenarios. I came across an interesting case. I have a widget where one can view, edit and create entities. When you click on the "AddNewEntity" Button. The ...
0
votes
1answer
175 views

Using instance variables/methods within Reactive Framework subscription in Javascript

I've got an object in JS in which I'm trying to test out the Reactive Framework In an event subscription I'd like to call an instance method of the enclosing class where the subscription is defined, ...
6
votes
2answers
549 views

How to detect konami code with Rx.js (reactive extensions for javascript)?

I want to start learning Rx.js and I'm looking for a cool example to start the ball rolling. How do I detect konami code with Rx.js? I want to detect a sequence of key press events (up up down down ...
1
vote
1answer
352 views

Buffer/Ignore events until period of inactivity then fire only last event

I have an observable that when it fires a message is displayed. After a delay I want to fade that message out, unless in the mean time that observable has fired again. In other words given an ...
0
votes
3answers
769 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 ...
6
votes
1answer
3k views

Reactive Extensions for Javascript code examples

Microsoft have published Reactive Extensions for Javascript. It should make asynchronous (and event based) web-ui programming easy. There are currently a video and some tutorials. But how cool UI ...
43
votes
10answers
8k views

What is the leading LINQ for JavaScript library?

I'm looking for a JavaScript library that will allow me to query complex JSON objects using a LINQ-like syntax. A quick search found a couple of promising options that look they might offer what I ...