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 // } } });
Hello C R,
Thank you for using our community.
If you want to disable the default notifications, you can use the suppressNotifications and set it to true.
This is an option that is supported by our editors. Here is a link to our online API: http://www.igniteui.com/help/api/2016.2/ui.ignumericeditor#options:suppressNotifications
What is more I have created a sample for you that show the option in action : http://jsfiddle.net/3emjr5sw/
If you have further questions, don’t hesitate to contact me.
Best Regards, Marina Stoyanova, Software Developer, Infragistics, Inc.
What if it is not a textEditor but an igCombo?
I have an igCombo. I want to hide validation error notification when a button is clicked. I use typescript and JQuery.