Hello,
In APEX 4.2,I've a page item named P5_SELECTED_ROLL_NUMBERS and a classic report with the following columns -
(1) Roll Number (2) Name (3) Age
Requirement : User can select one or multiple students. Selected roll numbers will get stored in the page item P5_SELECTED_ROLL_NUMBERS as a comma separated string.
So far wrote a dynamic action -
Event : click
Selection Type : jQuery Selector
jQuery Selector : #students td[headers="ROLL_NUMBER"]
true Action : Execute javaScript Code
$(document).ready(function() {
//var rid = $(this.triggeringElement).val();
var rid = this.triggeringElement.val;
console.log('Selected Roll Number : ' + rid);
});
Isuue : Yet to pick up the selected roll numbers.
Thank you.