Home > APEX_UI_DEFAU... > UPD_ITEM_DISP...
Previous |
Next |
The UPD_ITEM_DISPLAY_HEIGHT
procedure sets the item display height user interface default. This user interface default will be used by wizards when you select to create a form based upon the table and include the specified column. Display height controls if the item will be a text box or a text area.
Syntax
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_DISPLAY_HEIGHT ( p_table_name IN VARCHAR2, p_column_name IN VARCHAR2, p_display_height IN NUMBER);
Parameters
Table: UPD_ITEM_DISPLAY_HEIGHT Parameters describes the parameters available in the UPD_ITEM_DISPLAY_HEIGHT
procedure.
UPD_ITEM_DISPLAY_HEIGHT Parameters
Parameter | Description |
---|---|
|
Table name |
|
Column name |
|
Display height of any items created based upon this column |
Example
The following example sets a default item height of 3 when creating an item on the DNAME column against the DEPT table.
APEX_UI_DEFAULT_UPDATE.UPD_ITEM_DISPLAY_HEIGHT( p_table_name => 'DEPT', p_column_name => 'DNAME', p_display_height => 3);