igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
57 lines (56 loc) • 1.94 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 {
constructor() {
super();
this.fh = null;
this.fe = null;
this.fi = null;
this.fj = null;
}
get_type() {
return "ComboBoxColumn";
}
get dataSourceRef() {
return this.fh;
}
set dataSourceRef(a) {
this.fh = a;
this.e("DataSourceRef");
}
get dataSource() {
return this.fe;
}
set dataSource(a) {
this.fe = a;
this.e("DataSource");
}
get textField() {
return this.fi;
}
set textField(a) {
this.fi = a;
this.e("TextField");
}
get valueField() {
return this.fj;
}
set valueField(a) {
this.fj = a;
this.e("ValueField");
}
}
ComboBoxColumnDescription.$t = markType(ComboBoxColumnDescription, 'ComboBoxColumnDescription', DataGridColumnDescription.$);
ComboBoxColumnDescription.__canMarshalByValue1 = true;
return ComboBoxColumnDescription;
})();