How to suppress the Control Title or Unique Identifier from showing in a multi-select box


Technique

Product: Business Intelligence Portal
Release: 8205
Primary OS: Windows
Solution Date:

Problem

How to suppress the Control Title or Unique Identifier from showing in a multi-select box.

Solution

To suppress the Control Title or Unique Identifier from showing in the multi-select box, use the following code in your Cascading Style Sheet:

.ui-dialog-titlebar {
  display: none;
}

To change the text that appears at the top of the dropdown multi-select box, add a label for the specific control. If a control does not have a corresponding LABEL tag, it uses the control ID instead. For example: combobox1. Use the following steps to add a label:

  1. Add a new LABEL object to the page (in the Generic Elements section on the Component tab of the banner.
  2. Add the text you want to display to this LABEL object and position and style it appropriately.
  3. In the Properties panel of the LABEL object, look for the HtmlFor line. Add the ID of your $combobox to this line (checkbox1).
  4. Save the HTML page and retest.