I’ve been using Knockout for some time now, but more recently I started using Angular.js. And I have to admit it there are some really nice features in Angular that I would love to have in Knockout as well.
I was planning to write some extensions myself but then I discovered Knockout.Punches which introduces some enhanced binding syntax for Knockout.
One of the things I like in Angular is the concept of filters:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span>{{name | limitTo : 20 | uppercase}}</span> |
This will take the ‘name’ value from your bound ViewModel, returns only the first 20 characters and convert the result to uppercase.
And this is how you can do it using Knockout.Punches:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span data-bind="text: name | fit:20 | uppercase"></span> |