UNPKG

devextreme

Version:

HTML5 JavaScript Component Suite for Responsive Web Development

46 lines (45 loc) 1.37 kB
/** * DevExtreme (esm/__internal/ui/validation/m_default_adapter.js) * Version: 24.2.6 * Build date: Mon Mar 17 2025 * * Copyright (c) 2012 - 2025 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;