I need to place radio button controls with ICEFaces in different parts of my page, according to a layout specification I must meet.
SelectOneRadio
control allows me to instantiate several radio buttons in the same container, but I need to place just two radio buttons inside certain table cells, and I then need some controls to be activated or not according to which radio button is selected.
With plain HTML, I obviously need to place the two <input
s wherever I need and give them the same name.
How can I achieve the same using ICEFaces so I can enable/disable controls according to the selection of a specific radio option?
Thank you.