i'm using breeze 1.4.5 and angular 1.2.1 i'm binding directly to a breeze entity to a property of type decimal using the input type "text"
<input class="form-control" type="text" ng-model="vm.transaction.ListPrice" />
when doing this it only accepts numbers 0-9 in this field (comma, decimal point and other characters are ignored)
another input which binds to a text property of an entity just works fine so it has to be something behind the scenes which i don't understand
(i don't use type "number" because i don't like the buttons for the up/down selection in the input field.)