Knockoutjs computed observable

Knockoutjs computed observable


Table of Contents 
  1. code-sample for view.
  2. code-sample for view model.

Step 1

Here is the code-sample for view code

<img class="status" src="~/Images/icon_status.png" data-bind="visible: SaveAsDraft" />
<img class="status" src="~/Images/icon_status_red.png" data-bind="visible: SaveAsError" />

  1. If SaveAsDraft is true then icon status images visible otherwise not visible.
  2. If SaveAsError is true then icon status images visible otherwise not visible. 

Step 2

Here is the code-sample for view model code

var viewModel = function (Status) {
    var self = this;

    self.Status = Status;
    self.SaveAsDraft = ko.observable(false);
    self.SaveAsError = ko.observable(false);

    self.SaveAsDraft = ko.computed(function () {
        if (self.Status == window.itk.model.constant.Draft) {
            return window.itk.mytime.viewmodel.SaveAsDraft(true);       
        }
    }, self);

    self.SaveAsError = ko.computed(function () {
        if (self.Status == window.itk.model.constant.SaveError) {
            return window.itk.mytime.viewmodel.SaveAsError(true);
        }
    }, self);   
};

ko.applyBindings(new viewModel());




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

Knockoutjs computed observable Knockoutjs computed observable Reviewed by Anil Singh on 2:59 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^