Intersoft WebCombo Documentation
How-to: Enable/Disable WebCombo
See Also Send comments on this topic.
Intersoft WebCombo > WebCombo Features Overview > User Interface Customization How-to Topics > How-to: Enable/Disable WebCombo

Glossary Item Box

You can enable/disable WebCombo in two ways, which are using property and Client-side API.

In this topic, you will learn how to enable/disable WebCombo using both ways.

To enable/disable WebCombo using property

  1. Open WebCombo Designer - Advanced Settings.
  2. Set Enabled to False in order to disable WebCombo.
  3. Set Enabled to True in order to enable WebCombo.

To enable/disable WebCombo using Client-side API

  1. Use the following code to disable combo:

    JavaScript Copy ImageCopy Code
    //Disable WebCombo
    var combo = ISGetObject("WebCombo1");
    combo.Disable();                                       

  2. Use the following code to enable combo:

    JavaScript Copy ImageCopy Code
    //Enable WebCombo
    var combo = ISGetObject("WebCombo1");
    combo.Enable();                                       

See Also