Guest User

Untitled

a guest
Jul 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // sample render to used in handsontable
  2. //need moment.js
  3. function dateRenderer(instance, td, row, col, prop, value, cellProperties) {
  4. Handsontable.renderers.TextRenderer.apply(this, arguments);
  5. if (value != null) {
  6. if (value!=null) {
  7. var str = moment(value).format("MM/DD/YYYY h:hh A");
  8. td.innerHTML = str;
  9. }
  10. }
  11. };
Add Comment
Please, Sign In to add comment