on 2010 Jul 14 8:58 AM
Hi,
I designed a interactive form with two radio buttons(RB) and two subforms(SF).
When I click on RB1,need to display SF1 and when I Select RB2, need to display SF2.
How can I do this.
I wrote a sample code at Clcik even of RadioButtonList
var radioButtons = document.getElementsByName("RadioButtonList");
for (var x = 0; x < radioButtons.length; x++ )
{
if (radioButtons[1].checked)
{
Subform1.presence = "visible";
}
if (radioButtons[2].checked)
{
Subform2.presence = "visible";
}
}
But the above code is not working...not triggering anything.
Kindly let me know wat might bthe problem
Regards,
Venkat
I think you should probably post this message into the Interactive Forms by Adobe forum instead. It seems more forms logic specific than Web Dynpro ABAP related.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
69 | |
13 | |
11 | |
10 | |
9 | |
9 | |
6 | |
6 | |
5 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.