|
|
Re: List Item like internet Explorer Adress bar [message #388055 is a reply to message #387657] |
Mon, 23 February 2009 01:24 ![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) |
shahzaib_4vip@hotmail.com
Messages: 410 Registered: December 2008 Location: karachi
|
Senior Member |
|
|
@ David (Djmartin)
Thanks for your reply
Well actually i create a list item Like
i create a program unit
PROCEDURE jobname(p_ListName in number, p_SrcBox in number) IS
v_Rg4 RecordGroup;
BEGIN
v_RG4 := Find_Group('jobname');
END;
then i create a trigger
When_new_form_instance
Declare
v_grpid4 recordgroup;
v_rg4 number;
Begin
v_GrpID4 := CREATE_GROUP_FROM_QUERY('jobname', 'SELECT job_name, TO_CHAR(job_name) job_name FROM wjob ORDER BY 1');
v_rg4 := POPULATE_GROUP(v_GrpID4);
IF v_rg4 = 0 THEN
POPULATE_LIST('wstyle.style_job_name', v_GrpID4);
END IF;
Now its working but its not fulfill my requirement Because
there is so much job name available and its very difficult for me to search.
i am also used LOV against list item but LOV is also taking time there for i need a list item where i can found easily job name
as i referred internet explorer address bar
therefor i need a list item like internet explorer address bar because its easy to find job name with a list item like address bar
Hope you understand
Any way
Thanks for your Help
Shahzaib ismail
|
|
|
|
Re: List Item like internet Explorer Adress bar [message #388515 is a reply to message #387657] |
Wed, 25 February 2009 02: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) |
shahzaib_4vip@hotmail.com
Messages: 410 Registered: December 2008 Location: karachi
|
Senior Member |
|
|
@ David
There is no way to Create a list item like Internet Explorer Address Bar ?
I already short my lov and its working fine but the speed to data entry is very slow due to LOV.
I am using one other module which will create in Visual Basic there is a list item which is like Internet Explorer Address bar. So may be there is an option in Oracle Developer to Create a List item like I mansion Earlier.
Any Way
Thanks for your Advice David
Shahzaib Ismail
|
|
|
|
Re: List Item like internet Explorer Adress bar [message #388736 is a reply to message #387657] |
Thu, 26 February 2009 00:46 ![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) |
shahzaib_4vip@hotmail.com
Messages: 410 Registered: December 2008 Location: karachi
|
Senior Member |
|
|
@ David
I Does not want to create a LOV i want a list item. The LOV is working fine rather then List item but i want to know why we not be able to write words in list item? why we always chose data from list.
Quote: |
Did you try the 'long' version of the LOV? Did you add an index?
|
I do not need to try Long version of the LOV? because to create an LOV is not my requirement
In short Internet Explorer Address Bar is also a list item but we are be able to write our website.
Thanks for your reply David
Shahzaib
|
|
|
|
|
Re: Need Simple Combo list Example [message #388779 is a reply to message #388765] |
Thu, 26 February 2009 03:38 ![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) |
|
Here you go..........
PROCEDURE PopulateBookType IS
rg_id recordgroup;
r number;
BEGIN
rg_id:=create_group_from_query('RG_NAMES','select type_desc,type_desc from lib_booktype order by type_id');
r:=populate_group(rg_id);
populate_list('lst_booktype',rg_id);
END;
Regards,
Ashoka BL
Bengaluru
INDIA
|
|
|
|
|
|
|
|