Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

read apex_item.checkbox in a javascript

Karthik CSep 6 2013 — edited Sep 10 2013

Hi folks,

           I have a  popup report page with a check box  report like

select apex_item.checkbox(1,empno) tur ,

       ename,

       job

from  emp;

User can click the check box and give the submit the button. I need to pass all the check box  value to the parent page through JavaScript. I know the way to get the item value through JavaScript

text1 = $v("P4_COMMENTS");

But i am not sure how to get all the clicked item is a Java variable. I even tried

<script>

function i() {

av=document.getElementById("G_F01");

alert(av);

}

  </script>

Document.getelement is not working  in this case.

Please let me know how to fetch the

apex_item.checkbox checked item in a JavaScript rather than PL/SQL block.

Thanks in advace

karthik

This post has been answered by Ramesh P Oracle APEX Developer on Sep 6 2013
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 8 2013
Added on Sep 6 2013
4 comments
1,956 views