igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
84 lines (83 loc) • 3.03 kB
JavaScript
import { ensureBool } from "igniteui-angular-core";
/**
* Event arguments for the
* editModeValidationError event.
*/
var IgxSpreadsheetEditModeValidationErrorEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxSpreadsheetEditModeValidationErrorEventArgs() {
}
Object.defineProperty(IgxSpreadsheetEditModeValidationErrorEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxSpreadsheetEditModeValidationErrorEventArgs.prototype.onImplementationCreated = function () {
};
IgxSpreadsheetEditModeValidationErrorEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
Object.defineProperty(IgxSpreadsheetEditModeValidationErrorEventArgs.prototype, "action", {
/**
* Returns or sets the action to take in response to the failed validation.
* By default the property is set to null and the control will display a message box to obtain the action
* from the end user. If the property is set to a non-null value, that action will be used and the message box will not be
* displayed.
*/
get: function () {
return this.i.action;
},
set: function (v) {
this.i.action = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSpreadsheetEditModeValidationErrorEventArgs.prototype, "canStayInEditMode", {
/**
* Returns a boolean indicating whether the cell is allowed to stay in edit mode.
*/
get: function () {
return this.i.canStayInEditMode;
},
set: function (v) {
this.i.canStayInEditMode = ensureBool(v);
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSpreadsheetEditModeValidationErrorEventArgs.prototype, "cell", {
/**
* Returns the cell for which the control has entered edit mode.
*/
get: function () {
return this.i.cell;
},
set: function (v) {
this.i.cell = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgxSpreadsheetEditModeValidationErrorEventArgs.prototype, "validationRule", {
/**
* Returns the rule which failed validation.
*/
get: function () {
return this.i.validationRule;
},
set: function (v) {
this.i.validationRule = v;
},
enumerable: false,
configurable: true
});
return IgxSpreadsheetEditModeValidationErrorEventArgs;
}());
export { IgxSpreadsheetEditModeValidationErrorEventArgs };