List item? [message #405022] |
Tue, 26 May 2009 01:46 |
shahzaib_4vip@hotmail.com
Messages: 410 Registered: December 2008 Location: karachi
|
Senior Member |
|
|
Dear All
I Create a list item which is
DECLARE
v_rg NUMBER;
v_grpid RECORDGROUP;
BEGIN
v_grpid := Create_group_from_query('style_no_mas',
'SELECT Style_no_mas, to_char(style_no_mas) style_no_mas FROM style_master ORDER BY 1');
v_rg := Populate_group(v_grpid);
IF v_rg = 0 THEN
Populate_list('BLOCK314.style_no',v_grpid);
END IF;
END;
Its show me style_no_mas in list item
My requirement is i need 4 column information in one list item
For example there is style_no,style_name,qty,amount
when i click list item its show me all 4 column information and when i select one its return style_no
Hope you guys understand
Regards
Shahzaib ISmail [EDITED by DJM: split one line]
[Updated on: Wed, 03 June 2009 01:54] by Moderator Report message to a moderator
|
|
|
|
|
Re: List item? [message #405115 is a reply to message #405022] |
Tue, 26 May 2009 07:17 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Then I have no idea.
As far as I'm aware list items can only ever display one column and I can't find anything in form builder that indicates otherwise.
Do you not have access to the fmb you've displayed to check for yourself?
Maybe someone else knows...
|
|
|
Re: List item? [message #405119 is a reply to message #405022] |
Tue, 26 May 2009 07:22 |
cookiemonster
Messages: 13963 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Random thought.
That 3 column list in the screen shot - does it appear when you click on the list item itself or when you click on the List button?
|
|
|
|
|
|
|
|
Re: List item? [message #407388 is a reply to message #406295] |
Wed, 10 June 2009 01:17 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
I repeat: "Have you tried retrieving three or four items in the 'select' statement of your 'create_group_from_query'?"
Also try using a four column Form Builder record_group instead of a dynamic one.
David
|
|
|