- 
                Notifications
    You must be signed in to change notification settings 
- Fork 431
Closed
Description
Hi there,
Ive seen how to format date but how do I format time with date. Here is my code for formatting date only
      formatter: (cell) => {
        let dateObj = cell;
        if (typeof cell !== 'object') {
          dateObj = new Date(cell);
        }
        if (cell == null) {
          return
        }
        return `${('0' + (dateObj.getMonth() + 1)).slice(-2)}/${('0' + dateObj.getDate()).slice(-2)}/${dateObj.getFullYear()}`;
      },
      editor: {
        type: Type.DATE
      }
Metadata
Metadata
Assignees
Labels
No labels