Looking for a solution to select all rows of a report region. The region will contain a list of email addresses. Have tried implementing this functionality via a dynamic action triggered by a button. A demo of my latest attempt can be viewed at http://apex.oracle.com/pls/apex/f?p=57067:1
Dynamic Action is defined as follows:
Event: Click
Selection Type: Button
True Action:
Action: Execute JavaScript Code
Fire When Event Result Is: True
Fire On Page Load: Unchecked
Selection Type: Region
Code: document.getElementById('TEXT').select();
TEXT is the Static ID of the Region.
Jeff