The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
52 views

Backbone EventAggregator issue and questions

I am building a Backbone app using require.js for modular loading and Marionette to help with my application structuring and functionality. I have set up a require module for the event aggregator like ...
2
votes
2answers
128 views

Simple event aggregator

I'm looking for a simple event aggregator that works with require.js. I have two modules, one containing a view model and another with a "listener" of some sort: // view model ...
0
votes
0answers
58 views

Unhandled Exception using WPF/MvvM/Prism4/Eventaggregator

We have developed an application using WPF/MvvM/Prism4/Eventaggregator. We have a big problem with unhandled exceptions in our application. We have all these trapped/implemented in the application ...
0
votes
1answer
73 views

Reactive Extensions vs Event Aggregator

I am new to Reactive Extensions. I understand that Rx observes for any changes (at runtime) to the underlying object and notifies when changed to the subscribers. Consider the Rx for events, which ...
0
votes
1answer
52 views

GetEvent<>.Subscribe of event aggregator gives exception

I am loading the dll's using reflection and I then try to execute a method in that dll. That method has this line that subscribes to an event. I get an exception at this line This line is in a dll ...
0
votes
5answers
184 views

Pattern for binding commands on a child ViewModel from a parent menu

I'm creating a WPF MVVM app using Caliburn Micro. I have a set of buttons in a menu (Ribbon) that live in the view for my shell view model, which is a ScreenConductor. Based on the currently active ...
1
vote
1answer
88 views

How can I invoke a Callback action on the publisher of a PRISM CompositePresentationEvent?

Is it possible to invoke a callback action on the publisher of a PRISM CompositePresentationEvent after it has been handled by the subscriber? If yes, how can I do it? Here is the example scenario: ...
5
votes
1answer
144 views

Comunicating between views design patterns with events

event handlers are fine when you have a view that reference another view and listens its events, thats perfect for decoupling and reusability. the problem though is sometimes I have views that is not ...
0
votes
2answers
255 views

Make View Models activation aware in Prism/Composite MVVM WPF application

In my MVVMC application I have a process which contains multiple steps, basically a wizard. My controller resolves my outer View (call it WizardView) and adds it to the main region. WizardView ...
0
votes
2answers
101 views

Using Rx with, or alongside, Prism's EventAggregator - suggested approaches?

It strikes me that there is both some overlap and conflict between Prism's EventAggregator and Rx Framework, in that both are about subscribing to event streams. Rx obviously provides much more fine ...
0
votes
0answers
37 views

Localization eventaggregator refresh view on languagechange

I have a WPF Prism-Application with 3 Modules. In one Module are about 10 views visible at the same Time. I've Connected all Views to the event i throw when the Language is changed via the ...
4
votes
2answers
494 views

Backbone.js “fat router” design conundrum

I have spent the last 2 weeks learning backbone and related tools as well as writing an application. I have hit a wall with a design issue and would like to know what kind of solutions are available ...
3
votes
2answers
74 views

Mixing enums with event classes in an event aggregator

I attempted to implement my own simple event aggregator recently. I got a lot of inspiration from the event aggregator article on MSDN. There is one thing that I notice about the event aggregator on ...
0
votes
0answers
30 views

Where does the Event Aggregation registration happens

Hej guys, I'm kind of wondering what path to take. I'm writing an application that uses Event Aggregation (EA) a lot. Right now I was implementing an interface in my classes that exposes ...
1
vote
1answer
161 views

When should I use an event handler over an event aggregator?

When should I be using an Event Handler versus an Event Aggregator? In my code, I have two ViewModels that controlled by a parent ViewModel, I am trying to decide if I should just use an event ...
0
votes
3answers
267 views

Subscribe to Prism EventAggregator events with Reflection

I want to subscribe to an EventAggregator event using Reflection, because I am trying to dynamically wire up event subscriptions between Prism modules at runtime. (I'm using Silverlight 5, Prism and ...
0
votes
1answer
96 views

How does the Event Aggregator pattern manage its different publishers for its subscribers?

In an Event Aggregator pattern, the publishers publish events to the Aggregator and subscribers subscribe to a particular event via the Aggregator. Suppose there are 3 subscribers, SubscriberA, ...
0
votes
1answer
113 views

Prism event aggregator in common user control

In my wpf application I have several user controls, one of them is a TreeView for selection of a particular data type. When selectedItem changes, I publish a selectionChanged event (using Prism's ...
8
votes
2answers
1k views

backbone.js + global event dispatcher + require.js: how-to?

I have a number of backbone models, organized in collections and connected to their corresponding views and/or collections of views. Some of these models that do not belong to the same collection need ...
0
votes
2answers
79 views

What is the role of an Eventaggreagtor in Prism framework?

I have some what idea that in order to reduce the complexities of publishing and subscribing to an event, an Eventaggregator act as a single source. What else can be understood in this regard. I only ...
2
votes
3answers
259 views

Purpose of using Shared Services PRISM

What is the purpose and usings of shared services in prism ? What things can make me think that I have to use shared services instead of EventAggegator?
1
vote
1answer
531 views

EventAggregator and ServiceLocator Issue

I started working on a WPF project using Prism and MVVM, and I am trying to use the eventAggregator but, when the line below is executed an exception is raised: IServiceLocator ob = ...
2
votes
1answer
97 views

How do i limit the number of event subscriptions when raised by an event aggregator?

I need to limit the number of subscriptions for an event raised using event aggregator , How do i accomplish this?
4
votes
1answer
193 views

hierarchical navigation with conductor and event aggregator

This is my app architechture. Note that I have conductor as another conductor's child. And I have IHandle for each conductor to receive message from it's child.The message type is same as I use ...
1
vote
2answers
221 views

Refreshing property in ViewModel of Window with EventAggregator from another class

So.. I have some core-class. While it is loading some modules I am trying to send some notifications to status-window with EventAggregator.GetEvent().Publish(). Status window showing: private Core() ...
2
votes
1answer
274 views

How to return data from a subscribed method using EventAggregator and Microsoft Prism libraries

I am working on a WPF project, using MVVM and Microsoft Prism libraries. So, when I need to communicate through classes I use the class ...
0
votes
1answer
60 views

How can I differentiate the caller of the Prism's events?

I am using Prism's Event Aggregator and I publish an event from my composite control. But if a developer uses two instances of the control on the same form, how can a subscriber differentiate the ...
0
votes
2answers
116 views

Event aggregator for conditional actions

I am involved in the development of a WPF Prism application which uses the event aggregator to send global type messages which are then picked up by the shell. For example, a viewmodel might want a ...
0
votes
0answers
194 views

WPF PRISM EventAggregator - Inter-Module event raised but no UI update

Let me preface this by saying two things. (a) I'm happy to provide code but didn't want to swamp this question at the outset and (b) I have tried to solve this one using the ThreadOption.UIThread on ...
1
vote
1answer
276 views

TinyMessenger and Monotouch

I am trying to use the TinyMessenger in my iPad application. The iPad application has few UIViewControllers. I would like to see the communication among these controllers via TinyMessenger. I ...
0
votes
0answers
44 views

Create instances of classes to listen to events

I am using MEF for dependecy resolution but need a simplified way of creating classes so that they will handle events thrown by a class that is already composed. I do not want to inject all of these ...
0
votes
1answer
102 views

method missing from reactive extentions

I am trying to implement event aggregator using RX(Reactive extensions) here is code am am using, but subject.AddDisposable method is missing. can anyone help me? maybe it is old version so in new ...
1
vote
1answer
171 views

Sharing a dynamic object between loosley coupled Modules Prism?

Is it possible to share an dynamic type object from a Module between other modules without any static referencing or interface or any other DI/IoC solution? Lets say we have a GlobalEvent like this ...
0
votes
1answer
236 views

Wpf MVVM UI do not update implementing modularity,eventaggregator

i'm currently experimenting wpf communication between two views of different modules using prism IEventAggregator. publishing module and subscribing module is working fine, for some reason i can't ...
0
votes
2answers
226 views

Silverlight hangs on Prism's EventAggregator Subscribe method

I am using Prism's event aggregator in Silverlight and am having a hard time with Subscribe. When the code hits the Subscribe method it just hangs and never makes it to the next line of code. If I ...
0
votes
5answers
397 views

PRISM MEF communication from viewmodel to viewmodel by using Eventaggregator in wpf

I am trying to create a WPF application by using WPF and PRISM. I am also using MEF and mvvm. Is it possible to have 2 viewmodels that can communicate to each other by using the event aggregastor? Eg. ...
2
votes
1answer
235 views

Trying to understand how this is being called on the UI Thread

I am work my way through different open source projects to get a feel for how people approach the same problem in different ways. This time it's Event Aggregators, specifically Caliburn.Micro's one. ...
-1
votes
2answers
345 views

Generic EventAggregator?

We want to fire Events, with event names saved in SQL Server In the SQL Server you'll find ApplicationExitRequestEvent When we click the menu button, we'll get the string from the MenuItem Type t = ...
0
votes
1answer
722 views

Passing multiple parameters to Prism's EventAggregator

I'm using Prism's EventAggregator for loosely coupled communication between my module's ViewModels. I have have several properties (e.g. FirstName, LastName) in ViewModelA which need to update ...
0
votes
1answer
73 views

Mediator file in silverlight mvvm applications

In silverlight-MVVM applications, we have to use some kind of mediator/even aggregator file..to commuunicate between different viewmodels. But I can see that these files maintains list(or dictionary) ...
10
votes
3answers
864 views

Should related Backbone.js views have references to each other, or talk through events only?

I have an application that does CRUD for a Collection of Models. There is a DisplayView for each model that is always visible. There is also an EditView that is visible only when the associated ...
4
votes
3answers
289 views

When is it ok to combine 2 viewmodels into 1 instead of using some form of viewmodel-viewmodel communication?

I have 2 viewmodels that each have their own view. the first view model has 3 properties being displayed by the view: PolicyProvider PolicyType PolicyNumber the second view model has only 1 ...
1
vote
1answer
219 views

eventaggregator vs services

When developping rather large applications using Prism and MEF/Unity I always reach a point where I should choose between using events, a service or maybe both. And I cannot decide what's most usable. ...
0
votes
1answer
199 views

Publisher clarification for Event Aggregator design pattern

I would like to clarify the role of the "publisher" in the Event Aggregator design pattern. My current solution handles .NET data events, such as DataTable or XmlNode events occuring in a DataSet or ...
0
votes
2answers
140 views

Event Aggregator: need help modifying solution

I'm attempting to design an event aggregator for my application. (I am new to the design pattern, so I may not fully understand it yet). Firstly, I have created a solution already that is somewhat an ...
4
votes
1answer
414 views

Graceful application shutdown using WPF PRISM 4

I'm looking for a "best practice" (if there is even a best) for cleanly shutting an WPF application down that uses MEF and PRISM4. Ultimately, I'm looking for some sort of "Close Service" would ...
0
votes
1answer
179 views

Event Aggregator for Distributed Applications

I am implementing an application using Prism. The application has a few distributed components that resides on various machines or servers. In order to communicate them, I am planning to implement ...
1
vote
1answer
543 views

Prism EventAggregator and MVVM Light Messenger Summary

Can someone please give me good overview of the Prism EventAggregator in comparison to the MVVM Light Messenger service? Specifically; Are they similiar things, or meant for wholly different ...
0
votes
3answers
520 views

How to verify the EventAggregator's unsubscribe method is called when disposing a ViewModel with Prism

I'm struggling to write a test that confirms that I am correctly unsubscribing from an EventAggregator's message when it is closed. Anyone able to point out the (simple) answer?! Here is the code: ...
0
votes
1answer
203 views

How to determine who is calling the prism eventaggregator subscribe? or multiple subscribe calls

I have a subscribe method in one view model listening for publish events in another view model. For some reason, that I can't figure out, when the publish method is fired, the subscribe method runs ...

1 2 3