knockout.punches icon indicating copy to clipboard operation
knockout.punches copied to clipboard

A collection of enhanced binding syntaxes using Knockout 3+

Results 13 knockout.punches issues
Sort by recently updated
recently updated
newest added

I'm not entirely sure why this line is here https://github.com/mbest/knockout.punches/blob/70ed98d292bb33324aee4986b495c57326d084b6/src/interpolationMarkup.js#L146 but it means that any bindings that have names like this: `someBinding` won't work. A couple built in bindings happen...

Basically I want the same behavior of the "| default: " filter but I have the need to make the text italics when it should display "Missing". Still want HTML...

I love punches for the ability to write which creates a binding like: But in some cases I also want more immediate updates using `textInput`: Is there any way to...

Looks like this library isn't getting much updates, but I think it would be cool to have two way filters. I.e. a phone filter would take a 10 digit value...

Would you be interested in adding a feature to use punches style attributes on ko component params? From: ``` ``` To: ``` ``` I've not began implementing, but thought I...

Im does not found this option in docs. Is this exists? Like: ```html Some {{ example with }} {{ raw }} text ``` UPD Fastfix (**slow and have bugs**): ```js...

Hi, Lines 79 and 80 in src/interpolationMarkup.js : firstChar = expressionText[0], lastChar = expressionText[expressionText.length - 1], are not compatible with IE7, firstChar = expressionText.charAt(0), lastChar = expressionText.charAt(expressionText.length - 1), seems...

I recently spent 1 hour of trying to debug why attribute interpolation wasn't working at all. Finally I found that I incorrectly used the `js` files from `build/output` folder (just...

I'm VERY new to git and github, I've been developing in C# and using svn and mercurial for a very long time. So I decided to pick a project that...

instead of "foreach: { data: items, as: 'item' }" binding , plz provide "foreach: items as 'item' " syntax . thanks .