Select list option html attribute
Hi all,
APEX 4.1
I try to set custom attribute to each option in select list item but I can't.
Actually, I wanna set HTML attribute to them (options I mean).
My suggestion was wrote something like:
SELECT t.name as display_value , t.id || ('" title="' || q.name) as return_value
FROM table1 t, table2 q
WHERE t.created_by = :APP_USER
ORDER BY 1
It perfectly works but it is not correct :)
When page is loading - APEX make escape symbol - " - as ":
So how should I do it?