Skip to content

Instantly share code, notes, and snippets.

@WeiB71
Last active July 20, 2018 03:05
Show Gist options
  • Select an option

  • Save WeiB71/6889d3b0ccd0cde4ed191384b1af0142 to your computer and use it in GitHub Desktop.

Select an option

Save WeiB71/6889d3b0ccd0cde4ed191384b1af0142 to your computer and use it in GitHub Desktop.
handsontable to Format to MM/DD/YYYY
// sample render to used in handsontable
//need moment.js
function dateRenderer(instance, td, row, col, prop, value, cellProperties) {
Handsontable.renderers.TextRenderer.apply(this, arguments);
if (value != null) {
if (value!=null) {
var str = moment(value).format("MM/DD/YYYY h:hh A");
td.innerHTML = str;
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment