Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1010
igNumericEditor: How to disable the validator popup?
posted

I have the following igNumericEditor defined in my UI. However, I am unable to get the validator popup disabled. I don't want it popping up.

Anyway to disable it? I'm using IgniteUI 2016.1

    $("#quote-entry-options-expirationtime").igNumericEditor({
            dataMode: "int",
            buttonType: "spin",
            width: 100,
            height: 20,
            value: expirationValue,
            minValue: minExpireValue,
            maxValue: maxExpireValue,
            validatorOptions: {
                valueRange: [minExpireValue, maxExpireValue],
                errorShowing: function (event, ui) {
                    return false;
                }
            //    errorMessage: errMsg,
            //    notificationOptions: {
            //        direction: "bottom",
            //        mode: "popover",
            //        error: errMsg
            //    }
            }
        });
Parents Reply Children
No Data