combine dynamic and static classes through css binding, knockout.js

You can add dynamic class by css property and then add static class by attr property

<div data-bind="attr: { 'class': color }, css: { 'translucent': number() < 10 }">
  static dynamic css classes
</div>

Be sure to add any predefined classes to this binding
attr: { 'class': color }

Leave a Comment