RADIO BOX DISABLE [message #484544] |
Wed, 01 December 2010 06:01 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
|
HI,
I have a Radio Box Item field in Form, It contain Three Radio Buttons.
During the User Login Some of the users Not Require to Touch Any of the Three Radio. Thus i Require to Disable that Radio Button to That User. How to Disable the Particular Radio Button.
Please help me.
Regards,
C V S.
|
|
|
Re: RADIO BOX DISABLE [message #484547 is a reply to message #484544] |
Wed, 01 December 2010 06:35 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
cookiemonster
Messages: 13964 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Go to form builder. Select a radio button in the object navigator. Bring up the property palette. Select the enabled property. Press F1 to bring up form builder help. Click on the item link. Read what it says. click on the correct link for radio buttons, read what that says.
Oracle form builder help is incredibly comprehensive - you'll learn a lot if you actually read it.
|
|
|
|
Re: RADIO BOX DISABLE [message #484632 is a reply to message #484544] |
Thu, 02 December 2010 03:31 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
infosuresh2k
Messages: 77 Registered: September 2009 Location: CHENNAI, INDIA
|
Member |
![infosuesh2k](/forum/theme/orafaq/images/yahoo.png) ![infosuesh2k](/forum/theme/orafaq/images/skype.png)
|
|
Hi,
Use the below code to enable or disable radio button in forms....
IF v_user_yn = 'N' THEN -- MAKE IT DISABLE
SET_RADIO_BUTTON_PROPERTY('CTRL.USER_YN_RB', 'USER_YES', ENABLED, PROPERTY_FALSE);
SET_RADIO_BUTTON_PROPERTY('CTRL.USER_YN_RB', 'USER_NO', ENABLED, PROPERTY_FALSE);
ELSE --- MAKE IT ENABLE
SET_RADIO_BUTTON_PROPERTY('CTRL.USER_YN_RB', 'USER_YES', ENABLED, PROPERTY_TRUE);
SET_RADIO_BUTTON_PROPERTY('CTRL.USER_YN_RB', 'USER_NO', ENABLED, PROPERTY_TRUE);
END IF;
Regards,
Suresh.V
[Updated on: Thu, 02 December 2010 03:32] Report message to a moderator
|
|
|
|