Hi All,
I have a tabular form in APEX 4.2.
I want to do something with the value of a column. So i tried to get the values of that triggering field using a DA with jquery selector.
On a column i have defined a Dynamic Action:
Event = " Click".
Selection Type = Jquery selector
Jquery selector = td[headers='AANTAL']
True action starting the following javascript code:
var lwaarde_aantal = $(this.triggeringElement).val();
alert(" waarde = " + lwaarde_aantal);
returns an alert waarde = empty string
While
var l_element_aantal = $(this.triggeringElement).closest("tr").find("td[headers='AANTAL'] input:visible");
alert(" waarde = " + lwaarde_aantal);
returns the correct value "waarde = 5"
Does anybody knows why this happens?