cancel
Showing results for 
Search instead for 
Did you mean: 

Pocket PC checkbox problem

Former Member
0 Kudos

after i change my url xxxx?sap-wd-client=PieClient

when i display webdynpro page in pocket pc

although i have disable the checkbox...

the checkbox still able to change....

pls advice

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi yzme ,

Read only property is ignored in Pocket PC.

plz check this for UI Element Properties

http://help.sap.com/saphelp_nw04/helpdata/en/6b/cdf740c42f8566e10000000a1550b0/frameset.htm

Sunitha

Former Member
0 Kudos

so i can not do anything to disable it...??

Former Member
0 Kudos

Hai,

This is not a right way to do,

create a toggle action to that check box. for that check box value always make false (or what as initial).

that feels like disable.

regards,

naga

Former Member
0 Kudos

if i have a checkbox1

onToggle action...

what should i put....

how to do onToggle action...

what coding should include

Message was edited by:

yzme yzme

Former Member
0 Kudos

I think readonly & Enabled properties are not supported for the Pie & WML clients.

Regards,ANilkumar

Former Member
0 Kudos

yah...i know..

but someone tell me that i can use onToggle to disable in wml & pie client

any idea..how to do it onToggle

Former Member
0 Kudos

Hai,

What I mean is..

create Action and bind that action check Box Ontoggle.

bind a boolean variable check box value.

If Suppose table context

Context

-->TableDisplay

-->CheckBoxValue(boolean)

-->text

in on toggle method{

wdContext.currentTableDisplayElement().setCheckBoxValue(false);

}

if you did like that if he checked the check box. by that action it will remain as unchecked .

Regards,

Naga