Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

WebDynpro: Modifying Checkbox Properties

Former Member
0 Likes
304

How can I set the "checked" property of a Checkbox UI element as true dynamically in WebDynpro?

1 REPLY 1
Read only

Former Member
0 Likes
277

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