The requirement is to format the amounts displayed on all the pages. This is my code for custom binding.
(function () {
function refresh(element, valueAccessor) {
var val = ko.utils.unwrapObservable(valueAccessor());
$(element).text(getCultureSpecificAmount(val));
}
ko.bindingHandlers.currency = {
init: refresh,
update: refresh
}
})();
And this is the method which formats the amounts (not so relevant but still posting)
function getCultureSpecificAmount(number) {
var result = 0;
var regex = /[+-]?\d+(?:\.\d+)?/g;
var tempNumber = number;
if (match = regex.exec(number.toString())) {
tempNumber = match[0];
}
result = (parseFloat(tempNumber)).toLocaleString(culture, { maximumFractionDigits: currencyDecimalDigits, minimumFractionDigits: 0 });
return (number.toString()).replace(tempNumber, result);
}
This is from the cshtml to show how I am binding it
<span style="font-weight:bold" data-bind="currency:PurchaseOrderValue"></span>
The getCultureSpecificAmount method is written in a common js. Currently I am writing the code for custom binding on each js. If I move this code to the common.js then it stops working. Writing this code on every page makes the code look really ugly. Is there a way to define custom binding globally and use it across all pages. This is my project on knockout so I am completely clueless.
Here is something that works. One of the issues I found was that the
if(match = regex.exec(...))
needed to move outside of theif(...)
statement, but other than that, the below code is the essentially the same, so you weren't far off in getting it working.