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

Glossary Item Box

You could show/hide WebCombo in two ways, which are using property and Client-side API.

In this topic, you will learn how to show/hide WebCombo using both ways.

To show/hide WebCombo using property

  1. Open WebCombo Designer - Advanced Settings.
  2. Set Visible to False in order to hide WebCombo.
  3. Set Visible to True in order to show WebCombo.

To show/hide WebCombo using Client-side API

  1. Use the following code to hide combo:

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

  2. Use the following code to show combo:

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

See Also