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

help for checkbox display as marked

asif_ali2
Explorer
0 Likes
585

HI ALL,

I am facing some problem displaying the check box as marked or flagged when displaying the record.

my requirement is that when i display a record it should also display the check box as marked. how do i do that. help me with the code.

i have 8 checkboxes and when each checkbox is marked, the respective field is filled with a record. and when i display ( using push button) the selected record , it should show me the check box as marked if the field is not empty. how do i do it?

HI ALL,

I am facing some problem displaying the check box as marked or flagged when displaying the record.

my requirement is that when i display a record it should also display the check box as marked. how do i do that. help me with the code.

i have 8 checkboxes and when each checkbox is marked, the respective field is filled with a record. and when i display ( using push button) the selected record , it should show me the check box as marked if the field is not empty. how do i do it?

2 REPLIES 2
Read only

Former Member
0 Likes
545

hii

when you create the check box you have given some name for it right? say eg its name was check1..

so when all the input fields are filled wit data when enter is pressed go to code where you wrote what happens when enter is pressed there you put check1 = 'X'.(captial X)

For all check boxes you do the same your check boxes will be checked after the submit or enter or save button is clicked in your case.

it will not go blank.after the inputs are taken..try it i hope this will solve your problem..

regards

kavita

Read only

0 Likes
545

LOOP AT T_SFLIGHT INTO sflight.

WRITE:

/ SFLIGHT-FLDATE,

SFLIGHT-SEATSMAX,

SFLIGHT-SEATSOCC.

MODIFY CURRENT LINE FIELD FORMAT BOX INPUT on.

BOX = 'X'.

MODIFY CURRENT LINE FIELD VALUE BOX.

ENDLOOP.

ULINE.

Try the highlighted lines.It will helps u.I