UNPKG

handsontable

Version:

Handsontable is a JavaScript Data Grid available for React, Angular and Vue.

20 lines (19 loc) 820 B
import { textRenderer } from "../textRenderer/index.mjs"; export const RENDERER_TYPE = 'time'; /** * Default time renderer. * * @private * @param {Core} hotInstance The Handsontable instance. * @param {HTMLTableCellElement} TD The rendered cell element. * @param {number} row The visual row index. * @param {number} col The visual column index. * @param {number|string} prop The column property (passed when datasource is an array of objects). * @param {*} value The rendered value. * @param {object} cellProperties The cell meta object (see {@link Core#getCellMeta}). */ export function timeRenderer(hotInstance, TD, row, col, prop, value, cellProperties) { textRenderer.apply(this, [hotInstance, TD, row, col, prop, value, cellProperties]); TD.dir = 'ltr'; } timeRenderer.RENDERER_TYPE = RENDERER_TYPE;