how to make text item as non navigable [message #404192] |
Wed, 20 May 2009 13:21 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
nastyjillu
Messages: 211 Registered: February 2009
|
Senior Member |
|
|
i want to make a text item field non navigable.
i should not be able to click in that field.
i made 'keyboard navigation' property as 'No' even though iam able to click on that field and also iam able to go into that field when i press the tab key.
made update allowed property to 'NO'
insert allowed to 'NO'
even though iam able to navigate in that field.
thanks
jillu
|
|
|
|
Re: how to make text item as non navigable [message #404695 is a reply to message #404205] |
Fri, 22 May 2009 18:13 ![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) |
nastyjillu
Messages: 211 Registered: February 2009
|
Senior Member |
|
|
i made enabled property to 'NO' and
made item as 'Display item'. then iam getting below error
FRM-41058: No such Property for Get_Item_Property.
then i made enabled =yes and made item as display item. even though iam getting the same error.
why am i not able to make it non navigable??
i shouldnt be able to tab in that item.
thanks
jillu
|
|
|
|
|
|
|
|
Re: how to make text item as non navigable [message #405614 is a reply to message #404192] |
Thu, 28 May 2009 11:16 ![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: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
If you change an items type to Display Item in the property palette then it's a Display item. there's nothing else to do.
If this causes you to then get "FRM-41058: No such Property for Get_Item_Property." errors then that means there is some code somewhere in your form or an attached library that is doing an illegal get_item_property on that item (probably checking a property that exists for text items but not display items). Oracle doesn't make these errors up.
You need to find that code and work out what it is doing and why.
|
|
|
Re: how to make text item as non navigable [message #405636 is a reply to message #405614] |
Thu, 28 May 2009 13:17 ![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) |
nastyjillu
Messages: 211 Registered: February 2009
|
Senior Member |
|
|
i found out the code.below is code
GET_ITEM_PROPERTY(l_item_id, INSERT_ALLOWED) = 'TRUE'
GET_ITEM_PROPERTY(l_item_id, UPDATE_ALLOWED) = 'TRUE'
GET_ITEM_PROPERTY(l_item_id, ENABLED) = 'TRUE'
but it is in PLL. i cant change PLL.
if i make item property,
ENABLED as 'NO' and insert,update allowed as 'NO',
then will that help me?? will that allow me not to navigate??
is there any other way where i dont use 'display item' and use other properties to make it non navigable?
|
|
|
|