Skip to content

Instantly share code, notes, and snippets.

@tommck
tommck / knockoutExtensions.js
Last active September 6, 2017 10:20
a knockout binding handler for date formatting with momentjs
/*
* read-only date display with momentjs
* use like this: data-bind="moment: dateVar, format: 'YYYY-MM-DD'"
* The "format" is optional and will default to "MM/DD/YYYY"
*/
ko.bindingHandlers.moment = {
update: function (element, valueAccessor, allBindingsAccessor, viewModel) {
var val = valueAccessor();
var formatted = '**INVALID**'; // throw instead?