Giter Club home page Giter Club logo

Comments (1)

ivanovpavel1983 avatar ivanovpavel1983 commented on July 28, 2024

The same issue.
The form:
{ name: "alfresco/forms/Form", config: { showOkButton: true, okButtonLabel: "Найти", showCancelButton: false, okButtonPublishTopic: "SEARCH_CREATE_QUERY_CONTACT_LIST", okButtonPublishGlobal: true, showValidationErrorsImmediately: true, widgets: [ { name: "alfresco/forms/controls/RadioButtons", config: { fieldId: "PRESET_SEARCH_OPTIONS", label: "Выберите способ поиска клиента:", name: "value", value: "ID", noPostWhenValueIs: [ "NO_SEARCH" ], optionsConfig: { fixed: [ { label: "Поиск по ID-клиента", value: "ID" }, { label: "Поиск по ФИО", value: "FIO" }, { label: "Поиск по серии/номеру паспорта", value: "PASSPORT" } ] } } }, { name: "alfresco/forms/ControlRow", config: { widgetMarginLeft: 8, widgets: [ { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "clientId", label: "ID-клиента", name: "clientId", validateWhenHidden: false, validationConfig: [ { validation: "minLength", length: 4, errorMessage: "Минимум 4 символа", } ], postWhenHiddenOrDisabled: false, requirementConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "ID" ] } ] }, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "ID" ] } ] } } } ] } }, { name: "alfresco/forms/ControlRow", config: { widgetMarginLeft: 8, widgets: [ { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "lastName", label: "Фамилия", name: "lastName", placeHolder: "Фамилия...", validateWhenHidden: false, requirementConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] }, validationConfig: [ { validation: "regex", regex: "^[А-Яа-я]*$", errorMessage: "Допустимы только русские буквы" } ], postWhenHiddenOrDisabled: false, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] } } }, { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "firstName", label: "Имя", name: "firstName", placeHolder: "Имя...", validateWhenHidden: false, requirementConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] }, validationConfig: [ { validation: "regex", regex: "^[А-Яа-я]*$", errorMessage: "Допустимы только русские буквы" } ], postWhenHiddenOrDisabled: false, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] } } }, { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "middleName", label: "Отчество", name: "middleName", placeHolder: "Отчество...", validateWhenHidden: false, validationConfig: [ { validation: "regex", regex: "^[А-Яа-я]*$", errorMessage: "Допустимы только русские буквы" } ], postWhenHiddenOrDisabled: false, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] } } }, { name: "alfresco/forms/controls/DateTextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "birthDate", label: "Дата рождения", name: "birthDate", placeHolder: "12/31/1990", validateWhenHidden: false, postWhenHiddenOrDisabled: false, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "FIO" ] } ] } } } ] } }, { name: "alfresco/forms/ControlRow", config: { widgetMarginLeft: 8, widgets: [ { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "serialDoc", label: "Серия документа", placeHolder: "1234...", name: "serialDoc", requirementConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "PASSPORT" ] }] }, validationConfig: [ { validation: "regex", regex: "^[A-Za-z0-9]*$", errorMessage: "Только латинские буквы и цифры" } ], postWhenHiddenOrDisabled: false, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "PASSPORT" ] } ] } } }, { name: "alfresco/forms/controls/TextBox", config: { widthPx: 220, additionalCssClasses: "radius", fieldId: "numberDoc", label: "Номер документа", name: "numberDoc", placeHolder: "123456...", validationConfig: [ { validation: "regex", regex: "^[A-Za-z0-9]*$", errorMessage: "Только латинские буквы и цифры" } ], postWhenHiddenOrDisabled: false, requirementConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "PASSPORT" ] }] }, visibilityConfig: { rules: [ { targetId: "PRESET_SEARCH_OPTIONS", is: [ "PASSPORT" ] } ] } } } ] } }] } }]

Validation is activated independently on onvalidateWhenHidden = false parameter on fieldId: "clientId".

validateWhenHidden: false, validationConfig: [ { validation: "minLength", length: 4, errorMessage: "Минимум 4 символа", } ],

image

from aikau.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.