UNPKG

@syncfusion/ej2-grids

Version:

Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel.

51 lines (50 loc) 1.98 kB
var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); import { CellRenderer } from './cell-renderer'; /** * HeaderIndentCellRenderer class which responsible for building header indent cell. * * @hidden */ var HeaderIndentCellRenderer = /** @class */ (function (_super) { __extends(HeaderIndentCellRenderer, _super); function HeaderIndentCellRenderer() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.element = _this.parent.createElement('TH', { className: 'e-grouptopleftcell' }); return _this; } /** * Function to render the indent cell * * @param {Cell} cell - specifies the cell * @param {Object} data - specifies the data * @returns {Element} returns the element */ // eslint-disable-next-line @typescript-eslint/no-unused-vars HeaderIndentCellRenderer.prototype.render = function (cell, data) { var node = this.element.cloneNode(); node.appendChild(this.parent.createElement('div', { className: 'e-headercelldiv e-emptycell', innerHTML: '' })); if (cell) { if (cell.rowSpan) { node.setAttribute('rowspan', cell.rowSpan.toString()); } if (cell.rowSpan === 0) { node.style.display = 'none'; } } return node; }; return HeaderIndentCellRenderer; }(CellRenderer)); export { HeaderIndentCellRenderer };