Custom Properties for Additional Controls

In the custom properties for a check box, radio button, text, date time, combo box, or text area in Siebel Public Sector Self Service, you enter a unique value for the SBL_LBL_LD key and the SBL_CTRL_ID key.

You use the value for these two keys when you designate the attribute ID value of the control in an HTML file for a Web page. An example for the control type of text box in OPM (or the control types of text and date time in Siebel Public Sector Self Service) follows:

	<label id="SBL_LBL_1" style="display: none;"></label>
	<input id="SBL_CTRL_1" type="text" name="SBL_CTRL_1" aria-labelledby="SBL_LBL_1" 
	style="display: none;"/>

where:

  • SBL_LBL_1 is the value for the SBL_LBL_ID key.

  • SBL_CTRL_1 is the value for the SBL_CTRL_ID key.

This example uses <input type="text"> code for a control type of text box in OPM (or the control types of text and date time in Siebel Public Sector Self Service). For additional control types, note the following code:

  • For a control type of check box in OPM (or the control type of check box in Siebel Public Sector Self Service), use <input type="check"> code.

  • For the control types of radio button, list, and drop-down in OPM (or the control types of radio button and combo box in Siebel Public Sector Self Service), use <select> code.

  • For a control type of multiline text box in OPM (or the control type of text area in Siebel Public Sector Self Service), use <textarea> code.

Note: You must include the aria-labelledby="SBL_LBL_1" code for these additional control types, where SBL_LBL_1 is the value for the SBL_LBL_ID key. Also, this code supports accessibility and aria labels.