formcycle 8.3.6 - JavaScript for forms
    Preparing search index...

    Interface XmFormPluginVRule

    Describes a validation rule provided by a validation rule plugin. Contains the regular expression to be used for validation, as well as the error message to be shown when the value does not match the regular expression.

    interface XmFormPluginVRule {
        errorMsg: string;
        key: string;
        keyDisplayName: string;
        regex: string;
    }
    Index

    Properties

    errorMsg: string

    Error message to be shown when the validation fails.

    key: string

    Key (ID) of this plugin validation rule.

    keyDisplayName: string

    Name of the validation rule.

    regex: string

    The regular expression without the leading and trailing slash a value must match to be considered valid.