igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
63 lines (62 loc) • 2.06 kB
JavaScript
import { GridRowEditStartedEventArgs as GridRowEditStartedEventArgs_internal } from "./GridRowEditStartedEventArgs";
var IgcGridRowEditStartedEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcGridRowEditStartedEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcGridRowEditStartedEventArgs.prototype.createImplementation = function () {
return new GridRowEditStartedEventArgs_internal();
};
Object.defineProperty(IgcGridRowEditStartedEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcGridRowEditStartedEventArgs.prototype.onImplementationCreated = function () {
};
IgcGridRowEditStartedEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcGridRowEditStartedEventArgs.prototype, "row", {
/**
* Gets the row that started editing.
*/
get: function () {
return this.i.a;
},
set: function (v) {
this.i.a = +v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgcGridRowEditStartedEventArgs.prototype, "item", {
/**
* Gets the row item.
*/
get: function () {
return this.i.item;
},
set: function (v) {
this.i.item = v;
},
enumerable: false,
configurable: true
});
return IgcGridRowEditStartedEventArgs;
}());
export { IgcGridRowEditStartedEventArgs };