DCSIMG
DEV,WEB - Ran Wahle's blog

Ran Wahle's blog

Browse by Tags

All Tags » DEV » WEB (RSS)
KnockoutJS–Dependencies
KnockoutJS–Dependencies One of the things we’ll probably need is to be able to have dependency tracking in our bounded data. For example – if we have a customer’s list, we’d like to see the customer’s orders whenever we click on a customer. In this post I’ll demonstrate how to do it using the dependentObservable function of KnockoutJS Let’s look at the following JavaScript code: var viewModel = { customers: ko.observableArray([]), selectedCustomer: ko.observable(), orders: ko.observableArray([])...
KnockoutJs–MVVM in HTML & Javascript
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. ...
Session manager
This post comes as an extension to a post by Shlomo Goldberg (in Hebrew) that talks about how to work with session variable in a safer way than plain strings....