igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
42 lines (41 loc) • 1.92 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { SectionHeader } from "./SectionHeader";
import { markType } from "igniteui-webcomponents-core";
import { TemplateSectionHeaderCellModel } from "./TemplateSectionHeaderCellModel";
import { TemplateSectionHeaderCellUpdatingEventArgs } from "./TemplateSectionHeaderCellUpdatingEventArgs";
/**
* @hidden
*/
var TemplateSectionHeader = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(TemplateSectionHeader, _super);
function TemplateSectionHeader() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.cellUpdating = null;
return _this;
}
TemplateSectionHeader.prototype.d2 = function (a, b, c) {
return "templateSectionHeader";
};
TemplateSectionHeader.prototype.n = function (a) {
return new TemplateSectionHeaderCellModel();
};
TemplateSectionHeader.prototype.hu = function (a, b) {
if (this.cellUpdating != null) {
this.cellUpdating(this, ((function () {
var $ret = new TemplateSectionHeaderCellUpdatingEventArgs();
$ret.cellInfo = a;
$ret.content = b;
return $ret;
})()));
}
};
TemplateSectionHeader.$t = markType(TemplateSectionHeader, 'TemplateSectionHeader', SectionHeader.$);
return TemplateSectionHeader;
}(SectionHeader));
export { TemplateSectionHeader };