Skip to main content

Posts

Showing posts with the label Knockout MVC4 KnockoutJs using JSON and Ajax

Knockout MVC4 KnockoutJs using JSON and Ajax

Hi Everyone, I'm going to share code sample for display student matters using Knockoutjs, mvc 4, json and ajax . Simple Application using  Knockout  jQuery, Ajax, Json and MVC 4 Table of Contents 1. In the 1st step, code-sample for view-Model. 2. In the 2nd step, code-sample for View. 3. In the 3rd step, code-sample for Model. In the 1st step , code sample for view Model < script type ="text/javascript">     // Initialized the matters namespace.     var studentMatters= {};     // View model declaration.     studentMatters.initViewModel = function (matters) {         var matterViewModel = {             studMatterId: ko.observable(matters.studMatterId),             studMatterTitle: ko.observable(matters.studMatterTitle),  ...