@syncfusion/ej2-grids
Version:
Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel.
22 lines (21 loc) • 508 B
JavaScript
/**
* `TemplateEditCell` is used to handle template cell.
*
* @hidden
*/
var TemplateEditCell = /** @class */ (function () {
function TemplateEditCell(parent) {
this.parent = parent;
}
TemplateEditCell.prototype.read = function (element, value) {
return value;
};
TemplateEditCell.prototype.write = function () {
//
};
TemplateEditCell.prototype.destroy = function () {
//
};
return TemplateEditCell;
}());
export { TemplateEditCell };