Skip to content

Instantly share code, notes, and snippets.

@jdanyow
Created March 21, 2016 22:23
Show Gist options
  • Save jdanyow/5aa9ba1e06f01e597745 to your computer and use it in GitHub Desktop.
Save jdanyow/5aa9ba1e06f01e597745 to your computer and use it in GitHub Desktop.
<template>
<input type="text"
value.bind="myValue | numberFormat:'0,0[.]00' & updateTrigger:'change'"
change.delegate="myValueChanged($event.target.value)" >
</template>
import numeral from 'numeral';
export class App {
message = 'Hello World!';
myValueChanged(value) {
console.log(value);
}
}
export class NumberFormatValueConverter {
toView(value, format) {
if (value === null || value === undefined) {
value = 0;
}
return numeral(value).format(format);
}
fromView(input) {
return input.replace(/\$|,/g, "");
}
}
<!doctype html>
<html>
<head>
<title>Aurelia</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body aurelia-app>
<h1>Loading...</h1>
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/jspm_packages/system.js"></script>
<script src="https://cdn.rawgit.com/jdanyow/aurelia-bundle/v1.0.3/config.js"></script>
<script>
System.import('aurelia-bootstrapper');
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment