Knockout.js Role In ASP.NET MVC Application | Knockout.js Tutorial | ASP.NET MVC Tutorial | ASP.NET Web API Tutorial

, ,

Knockout.js is a Javascript library that makes it easy to bind HTML controls to data. Knockout.js uses the Model-View-ViewModel (MVVM) pattern. The model is the server-side......

Read More

Cascading Dropdown using Knockoutjs and ASP.NET MVC | ASP.NET MVC Tutorial | Knockoutjs Tutorial

,

This guide will walk you through building cascading drop down using knockoutjs and ASP.NET MVC. We leverage knockoutjs to create UI which update itself based on user......

Read More

Developing A Website Using ASP.NET MVC 4, EF, Knockoutjs And Bootstrap

, ,

All websites are growing faster these days, and once it grows, it is very hard to write, organize and maintain. As we add new functionality or developer to a project, any large web......

Read More

Best Place To Refer Knockout.js File | Knockoutjs

,

In general, it is better to reference the scripts at the bottom of the page. Mainly, it allows the page to appear to render faster to the end user because the entire visual markup......

Read More

Knockoutjs Video Tutorial | Knockout.js Video Demo Series

,

Lesson 1: Introduction Lesson 2: Initialising the application Lesson 3: Adding a viewModel Lesson 4: Basic bindings Lesson 5: Observable arrays Lesson 6: Control bindings - foreach Lesson......

Read More

Knockout.js Lesson 14 - Adding a Lightbox | Knockoutjs Video Tutorial

,

In the last practical lesson of the course, we add a final feature to our application - a simple lightbox. This is a basic demo to show how easy it is to add these kinds of new features......

Read More

Knockout.js Lesson 13 - Additional Knockout Features | Knockoutjs Video Tutorial

,

In lesson 13, we take a quick look at some useful features of Knockout which we don't need to use in our application, but which are nevertheless worth a mention. We look at virtual......

Read More

Knockout.js Lesson 12 - The Value Binding | Knockoutjs Video Tutorial

,

In lesson 12, we will see how we can use the value binding on an input element in order to add filtering capabilities to our demo application. We add the ability to filter by title,......

Read More

Knockout.js Lesson 11 - The Visible Binding | Knockoutjs Video Tutorial

,

In today's lesson, we take a look at the visible binding in order to add a button to our UI that is only displayed once an editable element has actually been edited. We also look......

Read More

Knockout.js Lesson 10 - Computed Observables | Knockoutjs Video Tutorial

,

In lesson 10, we look at a feature of Knockout called computed observables. These are special functions that reference one or more viewModel properties (either observables or observable......

Read More

Knockout.js Lesson 9 - Custom Bindings | Knockoutjs Video Tutorial

,

In lesson 9, we create our own custom binding in order to allow contentEditable elements that are edited to have their new text values automatically saved back to the viewModel, replacing......

Read More

Knockout.js Lesson 8 - The Click Binding | Knockoutjs Video Tutorial

,

We start lesson 8 with a little refactoring to tidy up our initialization method, and add a light skin to smarten up the application's appearance. We then move on to make the photo......

Read More

Knockout.js Lesson 7 - The event binding | Knockoutjs Video Tutorial

,

In today's lesson, we look at the event binding, and use it to wire up the sorts that we started looking at in lesson 6. We see how to connect the change event of the select box to......

Read More

Knockout.js Lesson 6 - The foreach binding | Knockoutjs Video Tutorial

,

Control bindings - foreach In lesson 6, we take a look at one of Knockout's control bindings - the foreach binding, which allows us to repeat a block of mark-up for each item in......

Read More

Knockout.js Lesson 5 - Observable arrays | Knockoutjs Video Tutorial

,

Today we're going to look at observable arrays in Knockout.js. Observable arrays are similar to observables, except that instead of subscribing to a single property and reacting when......

Read More

Knockout.js Lesson 4 - Basic bindings | Knockoutjs Video Tutorial

,

In lesson 4, we look at some of the basic bindings that Kncokout provides and which allow us to seamlessly connect our user interface to our viewModel. We discuss the form bindings,......

Read More

Knockout.js Lesson 3 - Adding a viewModel | Knockoutjs Video Tutorial

,

In this lesson, we put together a basic viewModel and see how to populate it with Knockout observable properties. These are special properties that Knockout will monitor for us and......

Read More

Knockout.js Lesson 2 - Initialising the application | Knockoutjs Video Tutorial

,

In lesson 2, we add the wrapper for our app and see how easy it is to create a simple constructor for our application that accepts configuration options and supports chaining. We......

Read More

Knockout.js Lesson 1 - Introduction | Knockoutjs Tutorial

,

In this series you will learn to build a simple photo app with Knockout.js. Knockout.js is a simple and powerful client side javascript framework used to create complex user interfaces.In......

Read More

Binding Knockoutjs View Model Using DOM Element ID | Knockout.js

There are scenarios where we have two view models in a single view. In such case, the binding can be done using the ko.applyBindings, adding the DOM element id as the......

Read More