How to put help text for column headers of manually created tabular form.
562907Mar 2 2007 — edited Apr 19 2007Hi All,
I got links from the forum and i am trying but not getting the result.Its not making any link on the column header of the manually created tabular form.
Here is what i am doing:
1: I have put this script in Footer of the region:
<script type="text/javascript">
var el=html_GetElement('Part_Number.');
el.onmouseover=function (event) {
toolTip_enable(event,this,'Hi! this is for tseting?');
}
</script>
Below is my region:
SELECT x.basic_id, x.part_number, x.part_name
FROM (SELECT htmldb_item.hidden (1, basic_id) basic_id,
htmldb_item.text (3,
part_number,
8,
NULL,
'onBlur=tabularForm(this)'
) part_number,
htmldb_item.text
(4,
part_name,
22,
NULL,
'readonly="true" style="color:black;background-color:#F7F7E7" tabIndex="-1"'
) part_name
FROM temp_basic_dparts
WHERE header_id = :p42_header_id
ORDER BY basic_id) x
WHERE 1 = 1
UNION ALL
SELECT htmldb_item.hidden (1, NULL) basic_id,
htmldb_item.text (3,
NULL,
8,
NULL,
'onBlur=tabularForm(this)'
) part_number,
htmldb_item.text
(4,
NULL,
22,
NULL,
'readonly="true" style="color:black;background-color:#F7F7E7" tabIndex="-1"'
) part_name
FROM DUAL
so is it possible to put help text in manually created tabular form. What i need to do more.
Thanks in advance.
Amit