Year: 2013
-
Working with Knockout.js Part 5: Working with visible Binding
Working with Knockout.js Part 4: Observable Arrays Working with Knockout.js Part 3: Working with Observables Working with Knockout.js part 2: Understanding MVVM Getting started with Knockout.js So far we have learnt about different aspects of ViewModel creation in Knockout.js. We learnt and discussed about MVVM, Observable, and Observable Array etc. In this post we will…
-
Working with Knockout.js Part 4: Observable Arrays
Read Part 3: Working with Observables Read Part 2: Understanding MVVM Read Part 1: Getting Started So far we have learnt fundamental of KO. In Part 3 we worked with single observable object. In this post we will take a look on working with Arrays of Observable. Focus of this post is to understand how…
-
Working with Knockout.js Part 3: Working with Observables
Read here working with Knockout.js Part 2: Understanding MVVM Read here Getting started with Knockout.js So far we have learnt basics of Knockout.js. In last two posts we tried to understand need of KO and MVVM pattern. One of the most essential and important feature of MVVM is, “When View Model changes View must be…
-
Working with Knockout.js part 2: Understanding MVVM
Read here Getting started with Knockout.js part1 In last post we had a discussion on Getting started with Knockout. In this post we will go one step further and understand different aspects of MVVM pattern and how Knockout.js helps us in creating web application adhering to MVVM pattern. Let us start our discussion with understanding…
-
Working with Knockout.js Part 1: Getting started with Knockoutjs
In this post we will take a look on Knockout.js. We will start with basic theoretical introduction and then to some basic demo on Knockout.js Knockout.js helps us to create dynamic JavaScript UI using the MVVM pattern. It simplifies the task of linking Data Model to the dynamic JavaScript UI. Knockout.js is a JavaScript library…
-
What is JSON?
For some of you this question might be the easiest to answer. But for many developers concept of JSON is not well understood. In my seminars when I use JSON data for demo, I find many developers do not have understanding of JSON. In this post I am trying to address this problem. In simple…
-
How to do Unit Test using NUnit : Part 1
Unit Testing is essential part of any production code. We can see rise of Test Driven Development (TDD) approach in many development projects. There are certain pros and cons of TDD but certainly we cannot ignore TDD way of software development. I read many blogs and tweets about TDD and got inspired to do some…