UNPKG

devextreme

Version:

JavaScript/TypeScript Component Suite for Responsive Web Development

46 lines (45 loc) 1.36 kB
/** * DevExtreme (esm/__internal/ui/validation/m_default_adapter.js) * Version: 25.2.7 * Build date: Tue May 05 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import Class from "../../../core/class"; class DefaultAdapter extends(Class.inherit({})) { ctor(editor, validator) { this.editor = editor; this.validator = validator; this.validationRequestsCallbacks = []; const handler = args => { this.validationRequestsCallbacks.forEach(item => item(args)) }; editor.validationRequest.add(handler); editor.on("disposing", () => { editor.validationRequest.remove(handler) }) } getValue() { return this.editor.option("value") } getCurrentValidationError() { return this.editor.option("validationError") } bypass() { return this.editor.option("disabled") } applyValidationResults(params) { this.editor.option({ validationErrors: params.brokenRules, validationStatus: params.status }) } reset() { this.editor.clear() } focus() { this.editor.focus() } } export default DefaultAdapter;