Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding a radio button?

Status
Not open for further replies.

scomfort

Programmer
Dec 3, 2003
44
GB
Hello,

In Forms 9i I would like to be able to hide a radio button depending on the outcome of another variable. I presume you use the set_item_property and set visible to false. However how do you get it to point to only one of the buttons in the radio group as you have to state an item_id, and I only want to hide any one radio button which is affected by the other variable? i.e. if availability is NO for slot 1 and 2 but YES for slot 3 how would you get it to hide the radio button for slot 1 and slot 2 but still show 3? And also where would you place this trigger?
Thanks for any help!
 
Use

[tt]SET_RADIO_BUTTON_PROPERTY('BLOCK.RADIO_GROUP','BUTTON_NAME',VISIBLE,PROPERTY_FALSE);[/tt]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top