Vertical and Horizontal Scroll Bar for a block [message #175674] |
Sun, 04 June 2006 09:59 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
sultanmasood
Messages: 11 Registered: March 2006
|
Junior Member |
|
|
Hi,
Trying to build the Vertical and Horizontal Scroll Bar for a block.
1.Created a content canvas and stacked canvas.
2.Show horizontal scroll bar to yes in stacked canvas.
3.Viewport smaller than the canvas in the stacked canvas.
4.Block properties.
Show scroll bar to yes.
Scroll bar orientation to vertical.
Is there anything missing.
I have attached the form.
-
Attachment: test.fmb
(Size: 44.00KB, Downloaded 2416 times)
|
|
|
|
|
|
|
|
|
|
Re: Vertical and Horizontal Scroll Bar for a block [message #327167 is a reply to message #180795] |
Sat, 14 June 2008 07:43 ![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) |
mailmearun06
Messages: 7 Registered: June 2008
|
Junior Member |
|
|
Hi All,
Hot to achieve this...
Items from TEXT_ITEM9 - TEXT_ITEM18 of BLOCK 8 to be displayed in Tabpage 6
ITEM21- ITEM29 of BLOCK 8 to be displayed in Tabpage 7.
Even in the form which was attached earlier, the first tab and second tab is displaying the same text_items even though there are two stacked canvas for TEXT_ITEM9 - TEXT_ITEM18 and another for ITEM21- ITEM29.
How to show there Text_Item Groups, i.e TEXT_ITEM9 - TEXT_ITEM18 - in tab6 and ITEM21- ITEM29 - in tab7.
All help in this regrads will be much apprecited.
Thanks
Arun
|
|
|
Re: Vertical and Horizontal Scroll Bar for a block [message #327193 is a reply to message #175674] |
Sat, 14 June 2008 10:47 ![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) |
Martin Eysackers
Messages: 80 Registered: October 2005 Location: Belgium
|
Member |
|
|
ok, so you have multiple canvases
an empty tabcanvas and 2 stacked ones (as those are the only ones with scrollbars)
you will now have to tell forms which stacked canvas you want in a given tabpage so
create a when-tab-page-changed trigger :
if :system.tab_new_page = 'PAGE7' then
hide_view('CANVAS4');
go_item('ITEM21');
elsif :system.tab_new_page = 'PAGE6' then
hide_view('CANVAS5');
go_item('TEXT_ITEM9');
end if;
this should do the trick
|
|
|
Re: Vertical and Horizontal Scroll Bar for a block [message #330907 is a reply to message #180795] |
Tue, 01 July 2008 14:00 ![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) |
alice_cool
Messages: 4 Registered: July 2008
|
Junior Member |
|
|
Hi I am trying to add a horizontal scroll bar for a tab page in my form, for this I probably have to create a stack canvas over tab canvas, I see you have done the same in the this form, however when I am trying to do this it is not allowing me saying that I can create a stack canvas only on content canvas. How have you done this job in the form you have attached? appreciate your reply
Thanks,
Sharmila
|
|
|
|