Simple questions, am I correct with this approach.
- I have a page with left, centre and right areas (divs).
- Each area has its own Backbone object, MVC/R
- Each area has its default HTML via a default JQuery template.
- Each Backbone object communicates Restfully to Asp.Net.MVC via JQuery.
- Depending on the JSON payload back from its MVC Action(s) an area can switch its HTML via a JQuery template.
- I got some code from the ‘net that does JavaScript EventAggregation communications between the Backbone objects in a similar way to Prism for WPF/Silverlight.
Do points 1 to 6 seem generally ok?
Could I use some sort of "pure" JavaScript eventing to replace point 6, if so how would I go about this?
As you can guess, I’m coming into this from a WPF/Silverlight background
Thanks in advance