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

    Interface XmFormVrule

    This object contains all the RegExps rules for the different data types.

    interface XmFormVrule {
        dateDE: RegExp;
        email: RegExp;
        integer: RegExp;
        ipv4: RegExp;
        money: RegExp;
        number: RegExp;
        onlyLetterNumber: RegExp;
        onlyLetterSp: RegExp;
        phone: RegExp;
        plzDE: RegExp;
        posinteger: RegExp;
        posmoney: RegExp;
        posmoneyOptionalComma: RegExp;
        time: RegExp;
        url: RegExp;
        [vruleKey: string]: RegExp;
    }

    Indexable

    • [vruleKey: string]: RegExp

      Custom data type that may have been set.

    Index

    Properties

    dateDE: RegExp

    The RegExp for the data type date (DD.MM.YYYY).

    email: RegExp

    The RegExp for the data type email.

    integer: RegExp

    The RegExp for the data type integer.

    ipv4: RegExp

    The RegExp for the data type IP4.

    money: RegExp

    The RegExp for the data type amount of money.

    number: RegExp

    The RegExp for the data type floating point number.

    onlyLetterNumber: RegExp

    The RegExp for the data type letters and numbers.

    onlyLetterSp: RegExp

    The RegExp for the data type letters, numbers and spaces.

    phone: RegExp

    The RegExp for the data type phone number.

    plzDE: RegExp

    The RegExp for the data type postal code (Germany).

    posinteger: RegExp

    The RegExp for the data type non-negative integer.

    posmoney: RegExp

    The RegExp for the data type non-negative amount of money.

    posmoneyOptionalComma: RegExp

    The RegExp for the data type non-negative amount of money (decimal part optional).

    time: RegExp

    The RegExp for the data type time (HH:MM).

    url: RegExp

    The RegExp for the data type unique resource identifier.