UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

53 lines (52 loc) 1.52 kB
import { GridConditionFilterStringErrorsParsingEventArgs as GridConditionFilterStringErrorsParsingEventArgs_internal } from "./GridConditionFilterStringErrorsParsingEventArgs"; /** * Represents event arguments for when there are errors parsing the filter string */ export class IgrGridConditionFilterStringErrorsParsingEventArgs { createImplementation() { return new GridConditionFilterStringErrorsParsingEventArgs_internal(); } get nativeElement() { return this._implementation.nativeElement; } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } constructor() { this.mounted = false; 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; } }