igniteui-react-core
Version:
Ignite UI React Core.
66 lines (65 loc) • 2.18 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.i2 = null;
this.iw = null;
this.iy = null;
this.i3 = null;
this.i4 = null;
}
get dataSourceRef() {
return this.i2;
}
set dataSourceRef(a) {
this.i2 = a;
this.j("DataSourceRef");
}
get dataSource() {
return this.iw;
}
set dataSource(a) {
this.iw = a;
this.j("DataSource");
}
get genericDataSource() {
return this.iy;
}
set genericDataSource(a) {
this.iy = a;
this.j("GenericDataSource");
}
get textField() {
return this.i3;
}
set textField(a) {
this.i3 = a;
this.j("TextField");
}
get valueField() {
return this.i4;
}
set valueField(a) {
this.i4 = a;
this.j("ValueField");
}
}
ComboBoxColumnDescription.$t = /*@__PURE__*/ markType(ComboBoxColumnDescription, 'ComboBoxColumnDescription', DataGridColumnDescription.$);
ComboBoxColumnDescription.__canMarshalByValue1 = true;
ComboBoxColumnDescription.__marshalByValueAlias1 = "ComboBoxColumn";
return ComboBoxColumnDescription;
})();