Stacked canvas is overlapping the content canvas

Hi all,
I am writing a program where I have one content canvas and a button to display the stacked canvas on button click. But when I run the form, 'only' the stacked canvas is showing-up even though I have hidden the stacked canvas in the on-new-form trigger.
Can anybody please shed some light.
Thanks,
Naren.

Hi,
Assuming you have two or more datablocks:
On the object navigator, move up (drag-drop) the datablock shown on the main canvas, so it apeears first.
OR
Open the Forms properties and set property: "First navigation data block"
Regards,
Hugo.

Similar Messages

  • I created mega menu in adobe muse ( master page ) but the thing is when i preview the menu in other pages the stuff i alreahy had created will overlap the menu. Is there anything i can do fix that problem up. I'd like to have the menu overlap the stuff i

    I created mega menu in adobe muse ( master page ) but the thing is when I preview that menu in other pages contents I already had created will overlap the menu. Is there any options that would fix that problem up. I'd like to have the menu overlap the contents. That does not happen on master page ( master page looks good ) Thank you very much.

    Place the menu on its own layer above the rest of the page content.

  • Stacked canvas view placed on the content canvas

    Hi to all,
    i am developed a one form ,i.e placed the stacked canvas view on the content convas.
    i create a two data block's with same table.
    one data block for content canvas and one for stacked canvas.
    in the content canvas i taken two fileds with scroll bar and remaining fields placed on the stacked canvas.
    these stacked canvas view put on the content canvas.it dispalying and
    executed succesfully.
    here i am getting one problem i am displying the 10 records at a time in both canvases.my requirment is placed on the
    cursor on the content canvas particular record scroll down then automatically show the same record details in stacked canvas and
    content canvas scroll bar is changed automatically stacked canvas scroll bar is changed.
    any one help me.........

    {quotei create a two data block's with same table.
    one data block for content canvas and one for stacked canvas.{quote}
    This is not necessary. Just create one data block and then assign the block items to your Content and Stacked canvases. You can display items in a data block on different canvases. By doing this, there is no need to write code to synchronize the records because they are part of the same data block so they will automatically scroll as you navigate through your records.
    Craig...

  • Display employees details in the stacked canvas from the content canvas

    Hi all,
           I want to display employees details in the stacked canvas from the content canvas,where i passed the empno & click on the find button , i have 2 blocks(emp,control), in control block only find button there, I have only one table i.e;emp
    BEGIN
        GO_BLOCK('EMP');
        Set_block_property('EMP', default_where, 'Empno = :EMP.EMPNO');
         Show_view('EMP_DET_CAN');
        execute_query;
    END;
    Thank You

    Hi Andreas Wieden,
    Andreas Weiden wrote:
    When you query on the EMP-block, yiou cannot include a WHERE-condition to that block as the block is cleared when the EXECUTE_QUERY starts. If you want to have a different find-block where you enter your search-condition, you have to include that item in your separate find-block. Otherwise use the standard-search-mechanism with ENTER_QUERY and EXECUTE_QUERY.
    You are right, so where clause is not possible in the same block, right?.I have to take empno column where it is a search column into the control block right?
    Please suggest me i want to retrieve records into the stacked canvas when i pass the empno & click on the find button in the content canvas? Is this not possible? If possible please let me know? I mean i want to take the search column in the EMP Block & find button in the control block..
    Thank You

  • Content canvas and  a stacked canvas moving when scroll through the details

    Dear Friends
    I have Mater and Details Block , and I have two canvas content canvas and a stacked canvas, and the a stacked canvas on top of content canvas , and I have set the horizontal and vertical scroll bar for the stacked canvas , my problem is that when I inquire and click on the details block which is on stacked canvas the header content canvas is moved up
    and what I want the header to be stable and not moving when scroll through the details .
    Best regards
    Jamil Alshaibani

    if the canvas is moved during runtime in general the problem is that is does not fit completly in the window. Try to adjust your window-size so that the whole layout fits into it.

  • Stacked canvas Issues when on the web

    I have a stacked canvas whose Viewport_X_Pos is set to some values other than 0. When the canvas is run on the web, however, the canvas is pushed to the right by same amount to the left cutting the canvas. Is This a bug and if yes, is there any better work around than pushing the items in the canvas to the left to compensate? Note that the canvas behaves nice when on a client/server.

    We also encountered this problem!
    Sometimes we managed to fix it taking care that the stacked canvas not to interfere/overlap with any other object on the content(other stacked canvas, an item, a graphical object etc.) that hosts it.
    Sometimes we could not fix it.
    Hope this helps,
    A.

  • How to  show additional items in the same window using stacked canvas

    How to show additional items in the same window using stacked canvas.
    My content canvas has 14 items, and I have to include more.
    I want to know how I can use a stacked canvas to show these additional items in the same window, so that I can scroll through horzontally , as if all the items are on one canvas.

    Well, I intially navigate into my content canvas. At this stage the stacked canvas is not visible, then how should I navigate to an item on the stacked canvas to make it visible?

  • How to remove the black line from a stacked canvas at run time???

    Hi All,
    I've developed a stacked canvas within a content canvas, when I run the form the stacked canvas apeared with a black line takes it.
    How to remove this line or how to disappear this line at run time??
    I tried to do this by putting (no line) in tools palette to the line color tool after selecting the black line one and after selecting the stacked canvas another once, but this did not resolve the problem!
    I need something else:
    I put the stacked canvas at detail data block and it didn't appear since I execute query in master data block
    How to appear the stacked canvas directly before executing query in master data block???

    Hi,
    u mean the border line? In stacked canvas property, select contour/outline and set it to none.
    Make sure, the stacked canvas is behind the content canvas in the objectnavigator. Then check your
    properties of the stacked canvas:
    - Position on content canvas
    - size
    - size of clipping
    Set stacked canvas property automatic visible to yes.
    Make sure the stacked canvas is not overlayed by other stacked canvas or items.
    Attackwave

  • (another) stacked canvas on content canvas problem

    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;

    user12198246 wrote:
    I've searched the forums for the last 2+ hours and can't find a solution for my problem, although there are hundreds of questions on this subject.
    I have a stacked canvas on top of a content canvas. The canvases share the same window. They also share a data block. I added radio buttons on the main canvas to "show/hide" the stacked (my ultimate goal is to have 2-3 stacked and toggle. When hide, the stacked canvas is hidden, but when i click show, it is not. I understand reading all the posts that the block with focus will display, and I've added both a go_block and go_item prior to the show_view. Below is my code. MEL_DETAILS is content and MEL_LINE_ITEM is stacked.
    IF :stack = 'SHOW_STACK' THEN
    GO_BLOCK('MEL_ITEM');
    GO_ITEM('MEL_ITEM.MIS_PROJECT_NO');
    SHOW_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', display_position, 718, 583);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_FALSE); -- radio button
    ELSif :stack = 'HIDE_STACK' THEN
    HIDE_VIEW('MEL_LINE_ITEM');
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);
    SET_ITEM_PROPERTY('PROJECTS.STACK',MOUSE_NAVIGATE,PROPERTY_TRUE);
    END IF;Here, it seems two problem..
    The line..
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_true);
    and
    SET_VIEW_PROPERTY('MEL_LINE_ITEM', visible, property_false);No needed
    Hope this helps
    Hamid

  • How to change the order of columns displayed in Stacked Canvas

    Dear Member,
    I have a Stacked Cavas which has many Items. How do i change the order of the Items displayed when the form is opened?
    I checked the X-Position in the property palette of each item, all the items have an X-position=0. I am really confused how do i change the order of the columns which are displayed in the stacked canvas when opening the form.
    Any help is greatly appreciated.
    Thanks
    Sandeep

    If i Try to use SET_ITEM_PROPERTY('BLOCK.ITEM', X_POS, myXpos);
    then it will increment each item X Position. The Total Stacked Canvas width i have is 9 and there are total of 36 items in the stacked canvas each of equal width 1.1,
    so the total becomes 38.5 which is greater than 9.
    I saw all triggers in the code, i dont see any code which exclusively determines item positions at run time. As i said before all the items have X position as zero but still they come up nicely.
    i HAVE A button in the form and following is the code which is written in when-button pressed trigger :
    show_view('DETAIL_CNT');
    GO_BLOCK('XX_PA_BUDGET_DTL_BLK');
    where DETAIL_CNT is the content canvas and 'XX_PA_BUDGET_DTL_BLK' is the data block in which items from both stacked and content exsist.
    I dont understand why this is happening.
    Thanks
    Sandeep

  • Stacked canvas in content canvas desapears when post_query

    Hello.
    I have a content canvas and i draw a stacked canvas into content canvas. I want a horizontal scroll in stacked and a vertical scroll bar in the content. In stacked canvas, i placed a base table data block. In when-form-instance, i have a comand SHOW_VIEW of stacked canvas.When i execute_query, the stacked canvas desapears. I don't understand why...
    This is Developer 10g
    Please help me.
    Best Regards

    I have seen that too, with tab canvas, which is like a stacked canvas.
    On mine, it occurs after a clear_form and synchronize, but before I execute any queries (there are multiple blocks and queries).
    So what I added was this, following the Synchronize:
    Declare
      Tab_View_id      Viewport     := Find_View('TAB');
    Begin
      if get_view_property(Tab_View_id,Visible) = 'FALSE' then
        show_view(Tab_View_id);
      end if;
    End;I actually put the Tab_View_ID variable into a package spec, so Forms only needs to set it once.
    If you can't find the right place to add the code, a form-level when-new-item-instance trigger will work.

  • Content canvas to stacked canvas for scroll bars

    I have a form which has more items. Initially I developed the form with content canvas(this has vertical scroll bar). now I changed this canvas to stacked canvas to get horizontal + vertical scroll bar. But I am not able to do it. Can any one please advice me how to achieve. Basically I need horizontal + veritcal scroll, so that user can easily scroll it.
    Appreciate your help.
    Thanks in Advance!!

    Hi
    This is a common task in Oracle Applications forms, the steps would be:
    - Put the context, fixed fields on content canvas, to the left of the window
    - Modify the block to show vertical scroll bar, display it on content canvas, to the right of the window
    - Accommodate remaining fields on stacked canvas, all of them from 0.0 to the right.
    - Modify stacked canvas viewport size and position to be shown in the space between the fixed fields on the content canvas and the vertical scrollbar on it, allow for space to the horizontal scrollbar
    - As Craig's answer states, modify stacked canvas property to show horizontal scrollbar

  • Stacked canvas appearing over content canvas by default

    Hi Guys,
    I have a Main content canvas and a stacked canvas. Both are having common single window attached to them window type is Document.
    When I launch this form then main content canvas is displayed but with stacked canvas on top of it.
    Control is in main content canvas but stacked canvas is over main content canvas.
    This stacked canvas should appear after some action like list change or button push which are on main content canvas.
    I have checked there is no go_item call for any objects on this stacked canvas.
    I have tried with commenting the code which shows canvas (show_view), still the stacked canvas appears on top of content canvas.
    Can anyone guide me on this?
    Thanks,
    Av.

    change the visible property of stack canvas to no and
    when u want to display that canvas,,
    use GO_ITEM(to send to any item in stack canvas)...
    and to hide use HIDE_VIEW('your canvas name');
    and be sure when u running the form, your cursor wont go to stack canvas items... because when the cursor goes there, the canvas will appear..
    -- Aamir...

  • Stacked Canvas distrubing the fields

    hi
    i have a form with search button,when i press this button to display the list of value(LOV),it distrub the all labels and text fields on the form.when i complete my searching process then all labels and text fields come back at its original position.i try my level best to overcome this problem by changing the Canvas type.
    firstaly i was used Stacked Canvas coz i need horizantal and vertical on my form,if i keep canvvas type content instead of satck then this canvas did not distrub all labels and fields,but it did not facilitate me with horizantal and vetical scrollbar and this scrollbar are my essentail requirement coz i have much of fiels to disply on form.
    plz let me know rightly what should i do to overcome this problem.
    thanks in advance
    Best Regards.
    Edited by: shahani110 on Sep 7, 2008 8:10 PM

    I think that we can help you if you give us some pieces of your code.
    What you mean when you say "i have a form with search button,when i press this button to display
    the list of value(LOV),it distrub the all labels and text fields on the
    form"
    for distrub all labels?
    Fabrizio

  • Stacked canvas not visible in Content view???

    I am following Oracle Forms Interactive Workbook and have downloaded a solution which involves implementing a scrolling stacked canvas. When looking at the solution I can see the scrolling stacked canvas items in the layout editor when the content canvas is selected. But when i look at MY form in the layout editor and do the same the only way i can see the stacked canvas items is by choosing STACKED in the object viewer.
    So how do i view the content canvas with the stacked canvas items/frame together.
    Presently when i run the form I see both no problem but the placement of the stacked canvas items is askew so i need to see both together in editior mode.
    Thanks in anticipation
    Fergus

    Hi Frank,
    Many thanks for that and I should have known but would have chased my tail for ages. Just one thing how do you subsequently deselect the stacked view. When I go to "View" --> "Stacked Views" and select the view to show it shows, great, but how on earth do i deselect it? I have tried everything.
    Regards
    Fergus

Maybe you are looking for

  • SATA HDD installation on K8N Neo2 Platinum, Non-RAID, Non-Bootable

    Hi- I'm a rank newbie on this forum (first post). I have a K8N Neo2 Platinum Mobo, which I've recently gotten up and running, with Windows XP-Pro SP2 installed on a single IDE drive. I would now like to add 2 SATA drives. I don't need or want the SAT

  • Safari 6: Email this page, no page title as subject?

    In all my other browsers, choosing "email link to this page" creates an email in my default mail program (Outlook 2011) with the page title as a subject line and the link to the page in the body of the email. Safari 6 on 10.8, however, gives the link

  • Why am i having data dropping issues

    I have typical data problems when im in doors but the most biggest problem i have, that i have been having, is when i use my phone as a hotspot, the data will drop and come back and it does it alot....some times i have to turn the hotspot off or turn

  • Very poor customer service!

    My wife and I have just switched from AT&T Wireless to Verizon as we will be spending the next year in an area of California that only Verizon covers! After being with the same company for about 15yrs (ATT&T Wireless was called Cingular before 2005 )

  • Date Scrolling Info won't clear

    I just installed iPhoto 7.02 on my Macbook. When I scroll through thumbnails a black overlay with the date appears. I assume this is the "scrolling information." However, it refuses to go away. It remains over the center of the photo in all the modes