views:

205

answers:

1

Friends,

My apex page has several different radio groups, each one can have the value of Yes or No.

When the user presses a button I need to capture the values of these radio groups in the javascript processing for the page and then "do stuff" dependent on their values.

Is there an Apex Javascript API that I could utilise to obtain the values? or will I need to implement a function similiar to this?

Thanks in advance for any help you can provide.

+3  A: 

In case it's of interest to anyone the APEX API $f_SelectValue does what I need.

Documented here

carpenteri