igniteui-react-core
Version:
Ignite UI React Core.
40 lines (39 loc) • 903 B
JavaScript
/**
* Provides information about a schema change event that has occurred.
*/
export class IgrDataSourceSchemaChangedEventArgs {
get nativeElement() {
return this._implementation.nativeElement;
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
onImplementationCreated() {
}
constructor() {
this.mounted = false;
}
_provideImplementation(i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
/**
* Gets the new schema that has been provided.
*/
get schema() {
return this.i.schema;
}
/**
* Gets the current full count of items in the data source.
*/
get count() {
return this.i.count;
}
}