Programmitcally Hide List Item [message #302906] |
Wed, 27 February 2008 05:47 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ambhoj
Messages: 3 Registered: May 2006 Location: gurgaon
|
Junior Member |
![ambhoj](/forum/theme/orafaq/images/yahoo.png)
|
|
Hi All,
I have created a form in oracle Form 6i.
In the created form I wanna hide a list_Item programmitcally.
Is this possible? If yes, then plese sent me syntax for that.
Regards
Ambhoj
|
|
|
|
Re: Programmitcally Hide List Item [message #303155 is a reply to message #302906] |
Thu, 28 February 2008 03:11 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
Flash
Messages: 34 Registered: February 2008
|
Member |
|
|
You can use
SET_ITEM_PROPERTY ('item_name', VISIBLE, PROPERTY_FALSE)
When you want to set it back to visible, please include
SET_ITEM_PROPERTY ('item_name', VISIBLE, PROPERTY_TRUE) SET_ITEM_PROPERTY ('item_name', NAVIGABLE, PROPERTY_TRUE)
Thanks
Flash
|
|
|