‎2008 Feb 20 9:12 AM
How can I set the "checked" property of a Checkbox UI element as true dynamically in WebDynpro?
‎2008 Feb 22 11:38 AM
Hi Rajesh,
Declare a type in the program as the check box , that you have declared in the screee,
ex:. In screen 100 , if you had created , a check box with name as "check1" . Try to declare a variable of same name in the progam as globally like the following.
data: check1 type xfeld.
Then in the PAI module try to change the value like the following.
check1 = 'X'. - to make the checkbox checked.
check1 = space - to make the checkbox unselected.
Hope this will help u.
DO remember to Reward points for useful answers.
Thanks,
Jey