How to get Text Item Custom Attributes
hszeroSep 23 2008 — edited Sep 23 2008Hello all,
I am running a report creation like the select below...
SELECT apex_item.text (1,
printer,
20,
2000,
'rownum=' || '"' || ROWNUM || '"'
) AS printer
FROM DUAL
with no issues.
But I have questions on how to retreive the rownum attribute I have created?
I guess for that matter any custom attribute I choose to add, as there will be others.
I would like to be able to get those custom attributes in a for loop as shown below.
Any Ideas?
FOR i in 1..APEX_APPLICATION.G_F01.count
LOOP
?APEX_APPLICATION.G_F01(i).rownum?
END LOOP;