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
335
Disable igCombo tooltip
posted

In version 2015.2, how can I disable the tooltip for igCombo?

Parents
  • 20255
    Offline posted

    Hello,

    Thank you for contacting us!

    I am not sure what is your combo configuration and if you are using different widget for validation, like out igValidator widget, so I will tell you the two ways that you can use for enabling/disabling the validation (tooltip).

    You can set combo validationOptions.required to false:

    $('#combo2').igCombo({
     dataSource: data,
     textKey: 'Name',
     valueKey: "ID",
     validatorOptions: {
      required: true
     }
    });

    Or remove the combo selector from fields collection:

    $('#validationForm').igValidator({
     required: true,
     onsubmit: true,
     successMessage: "Valid",
     fields: [
      {
       selector: "#combo2",
       onchange: true,
       lengthRange: [2]
      }
     ]
    });

    Looking forward to hearing from you.

Reply Children