igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
49 lines (48 loc) • 1.41 kB
JavaScript
import { GridConditionFilterStringErrorsParsingEventArgs as GridConditionFilterStringErrorsParsingEventArgs_internal } from "./GridConditionFilterStringErrorsParsingEventArgs";
/**
* Represents event arguments for when there are errors parsing the filter string
*/
export class IgcGridConditionFilterStringErrorsParsingEventArgs {
createImplementation() {
return new GridConditionFilterStringErrorsParsingEventArgs_internal();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
get propertyName() {
return this.i.propertyName;
}
set propertyName(v) {
this.i.propertyName = v;
}
/**
* Gets the errors from parsing the filter string.
*/
get errors() {
return this.i.errors;
}
set errors(v) {
this.i.errors = v;
}
}