igniteui-react-core
Version:
Ignite UI React Core.
58 lines (57 loc) • 1.97 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 { DataGridColumnDescription } from "./DataGridColumnDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let ComboBoxColumnDescription = /*@__PURE__*/ (() => {
class ComboBoxColumnDescription extends DataGridColumnDescription {
get_type() {
return "ComboBoxColumn";
}
constructor() {
super();
this.f7 = null;
this.f3 = null;
this.f8 = null;
this.f9 = null;
}
get dataSourceRef() {
return this.f7;
}
set dataSourceRef(a) {
this.f7 = a;
this.g("DataSourceRef");
}
get dataSource() {
return this.f3;
}
set dataSource(a) {
this.f3 = a;
this.g("DataSource");
}
get textField() {
return this.f8;
}
set textField(a) {
this.f8 = a;
this.g("TextField");
}
get valueField() {
return this.f9;
}
set valueField(a) {
this.f9 = a;
this.g("ValueField");
}
}
ComboBoxColumnDescription.$t = /*@__PURE__*/ markType(ComboBoxColumnDescription, 'ComboBoxColumnDescription', DataGridColumnDescription.$);
ComboBoxColumnDescription.__canMarshalByValue1 = true;
ComboBoxColumnDescription.__marshalByValueAlias1 = "ComboBoxColumn";
return ComboBoxColumnDescription;
})();