Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

HIDE RADIO BUTTON FOR THE CURRENT RECORD

JavaDeveloper1981Jul 9 2015 — edited Jul 9 2015

I have radio button group BR , this radio group contain 4 radio buttons :

1- NEW: NOT VISIBLE

2- FORWORD :NOT VISIBLE

3- BACKWORD : NOT VISIBLE

4- REMOVE_BACKWORD

I want to display only the fourth radio button remove_backword on the form based on certain condition for the current record

I tried the next steps :

1- in when_new_form_instance trigger :'

SET_RADIO_BUTTON_PROPERTY('NT_CALL.BRO','REMOVE_BACKWARD',VISIBLE,PROPERTY_FALSE);

2- in post_query trigger on block level :

IF (:NT_CALL.BRO = 2 ) THEN

SET_RADIO_BUTTON_PROPERTY('NT_CALL.BRO','REMOVE_BACKWARD',VISIBLE,PROPERTY_TRUE);

END IF ;

the problem is : the radio button is displayed for all records after dispaying it first time . i want to be dispayed for the current record and hidden for the other records.

please help , thank you .

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Aug 6 2015
Added on Jul 9 2015
1 comment
1,176 views