Posts by hensou • 76 points
2 posts
-
2
votes1
answer66
viewsA: How to check if the item is in the knockout list, because the isthere function returns 'false'?
No for, Voce ended up using list.length, when it should be list().length or lista().length function Person(firstName, lastName) { this.firstName = firstName; this.lastName = lastName; } function…
-
4
votes2
answers146
viewsA: Format decimal places in Forms
I couldn’t identify the format that Voce wants, but anyway, one way to format is with the "N" specifier and also, if you want to have greater consistency, you can use Cultureinfo for a specific…