| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1× 1× 1× 1× 11175× 11175× 11175× 11175× 11175× 11175× 11175× 1× 1× | define(["require", "exports", "@syncfusion/ej2-base"], function (require, exports, ej2_base_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Column = (function () {
function Column(options) {
this.allowEditing = true;
this.allowReordering = true;
this.allowResizing = true;
this.allowSorting = true;
this.allowFiltering = true;
this.edit = {};
ej2_base_1.merge(this, options);
}
return Column;
}());
exports.Column = Column;
});
|