knockout js if ifnot else binding

Hello Everyone,

I'm going to share the code sample for if bindings in knockoutjs and ifnot bindings in knockoutjs.

In the 1st step : code sample for if binding in the view

The "if" binding

  <!-- ko if: totalEmployee -->
        Total Employee(<!--ko text: totalEmployee --><!--/ko-->
  <!-- /ko -->

code sample for ifnot binding in the view


  <!-- ko ifnot: totalEmployee -->
        No Employee.
  <!-- /ko -->


In the 2nd step code sample for view-Model

<script type="text/javascript">
    var totalEmployee = ko.observableArray([
          { Id: "001", type: "JEE" },
          { Id: "002", type: "SSE" }
   ]);
</script>

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

www.code-sample.com/. Powered by Blogger.
^