|
|
|
|
|
|
Re: Change LOV Buttons into Nepali Text [message #176585 is a reply to message #176372] |
Thu, 08 June 2006 19:19 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](/forum/images/custom_avatars/67467.jpg) |
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Also consider creating your own form that LOOKS like a LOV.
In the calling form you have a Key-Listval trigger against the field with the following code.
BEGIN
:global.return_value := 'asdf';
Call('my_lov');
IF :global.return_value <> 'asdf' THEN
:blk.itm := :global.return_value;
END IF;
END;
Then in the form 'my_lov' you have the columns your would normally display and then you have your buttons with the appropriate text and a When-Button-Pressed with code that tests that you have selected a value and then passes it back by assigning it to ':global.return_value' and then doing an 'exit_form'.
David
|
|
|