One of the things I’ve cherished the most about XAML related technologies development was the ability to completely decouple behavior and UI using MVVM. I didn’t know about any possibility to implement the same pattern on HTML & Javascript based applications. ...
One of the main issues regarding Silverlight was the navigation issue,
what commonly refers as “How can we support browser’s back button”.
Although Microsoft has standard solution for that is somewhat limited. It’s
limitation concerns two main issues:
1. Navigation requires as to use Page Navigation and not user controls
2. It won’t support scenario when pressing a link changes the internal state
but will replace the entire page instead.
In this post, I’ll demonstrate how we can overcome these issues.
...
I recently had the pleasure of having Elad Katz as a consultant for the customer SilverLight
I work for on Sela’s behalf. Elad’s job was to lead us migrating a “regular”
Silverlight project to MVVM .
This post is the first in a series discussing MVVM and it’s application in
Silverlight. In here I’ll discuss about what MVVM is all about and what are
it’s advantages....