Position of items in a region changes when changing region display point

Hi all,
I encounter a strange behaviour of items when changing the display point of a reports region from default (Page Template Body (3)) to anything else.
If set to Body (3), my items are correctly displayed above the report, but else they are displayed below.
Changing the sequence numbers does not affect this.
To clarify what I mean I created a sample application:
http://apex.oracle.com/pls/otn/f?p=16478:1
Is there any possiblity to influence whether items in a reports region are displayed below or above the report table? - I did not find anything...
TIA,
Felix

If you read the description of those other regions you'll clearly see "items below region content" rather than "items above region content", like the page template body region #3.
This is one limitation of the ApEx region templates that some would like to see improved - meaning, allowing for more flexibility.
Earl

Similar Messages

  • Entourage - Appointments change when changing time zone

    Hello There,
    When changing the time zone in Entourage all the appointments already entered do change as well.
    E.g. the appointment is 8 am. After changing the time zone by 4 hours, the appointment changes to 4 am
    I don't know why that is as it does not make any sense at all. Just because you change the time zone while travelling the time of your appointments don't change.
    What can I do to avoid he undesired change of appointments.
    Thanks

    Hi Tom!
    Don't change the timezone in Entourage once you have it set. Instead, change your Mac's timezone using the Date & Time System Preferences pane.
    The default timezone in Entourage is your reference point for new appointments only. For example, if you create an appointment at 9 a.m. CST, it's still going to occur at 9 a.m. CST even though you're really at 7 a.m. PST by your clock. If you intend to schedule an appointment that will occur while you're traveling schedule it for the time in your Entourage default timezone.
    Hope this helps! bill
    1 GHz Powerbook G4 Mac OS X (10.4.7)

  • Deactivating region (taskflow) when changing showDetailItem in panelTabbed

    Jdev 11.1.1.4
    I have a JSF page with a af:panelTabbed wiith two af:showDetailItem
    In every af:showDetailItem I have a region mapping to the same task flow in both regions (in order to reuse).
    The taskflow has to main steps: First one method call initializing some view objects and variables. the second a view displaying a JSF.
    Every time the af:showDetailItem is changed (by clicking on the tab) I need the taskflow to be restarted and begin a new fresh copy of it.
    To achieve this I have defined both af:showDetailItem like this
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.CERTIFICADOS']}" id="sdi1"
    stretchChildren="first" immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi1}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi1_disclosureListener}"*
    partialTriggers="r1">
    and
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.COMPULSAS']}" id="sdi2"
    immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi2}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi2_disclosureListener}"*
    stretchChildren="first" partialTriggers="r2">
    The sdi1_disclosureListener is defined:
    public void sdi1_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCertificadosActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    else activeRegionBean.setRegionCertificadosActivation(false);
    the sdi2_disclosureListener is defined more or less the same but opposite:
    public void sdi2_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCompulsasActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    else activeRegionBean.setRegionCompulsasActivation(false);
    The activeRegionBean.setRegionCompulsasActivation(false); and activeRegionBean.setRegionCertificadosActivation(false); is a bean controlling the binding of the regions in the page:
    <taskFlow id="AlumnosSolCertificados1"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCertificadosActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="CERTIFICADOS"/>
    </parameters>
    </taskFlow>
    and
    <taskFlow id="AlumnosSolCertificados2"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCompulsasActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="COMPULSAS"/>
    </parameters>
    </taskFlow>
    All this works ok when I click on B showdetailitem after intially having shown A. The task flow first terminates and then initiates a new taskflow.
    But when I reactivate showdetailitem A clicking on it, the taskflow is first activated and then deactivated loosing all its initialization.
    The problem is that ADF first executes always the conditional activation of the first showdetailitem and the the conditional activation of the second showdetailitem what is ok in one sense but not on the other because it closes the taskflow after having been opened.
    Do I have any way to avoid this and control that the taskflow is always first deactivated and then activated ?

    Jdev 11.1.1.4
    I have a JSF page with a af:panelTabbed wiith two af:showDetailItem
    In every af:showDetailItem I have a region mapping to the same task flow in both regions (in order to reuse).
    The taskflow has to main steps: First one method call initializing some view objects and variables. the second a view displaying a JSF.
    Every time the af:showDetailItem is changed (by clicking on the tab) I need the taskflow to be restarted and begin a new fresh copy of it.
    To achieve this I have defined both af:showDetailItem like this
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.CERTIFICADOS']}" id="sdi1"
    stretchChildren="first" immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi1}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi1_disclosureListener}"*
    partialTriggers="r1">
    and
    <af:showDetailItem text="#{viewcontrollerBundle['ALU.COMPULSAS']}" id="sdi2"
    immediate="true"
    binding="#{backingBeanScope.pertanasSolCertCompBB.sdi2}"
    *disclosureListener="#{backingBeanScope.pertanasSolCertCompBB.sdi2_disclosureListener}"*
    stretchChildren="first" partialTriggers="r2">
    The sdi1_disclosureListener is defined:
    public void sdi1_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCertificadosActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    else activeRegionBean.setRegionCertificadosActivation(false);
    the sdi2_disclosureListener is defined more or less the same but opposite:
    public void sdi2_disclosureListener(DisclosureEvent disclosureEvent) {
    activacionRegion activeRegionBean = (activacionRegion)resolveELExpression("#{activacionRegion}");
    if (disclosureEvent.isExpanded()) {
    activeRegionBean.setRegionCompulsasActivation(true);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r2);
    AdfFacesContext.getCurrentInstance().addPartialTarget(r1);
    else activeRegionBean.setRegionCompulsasActivation(false);
    The activeRegionBean.setRegionCompulsasActivation(false); and activeRegionBean.setRegionCertificadosActivation(false); is a bean controlling the binding of the regions in the page:
    <taskFlow id="AlumnosSolCertificados1"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCertificadosActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="CERTIFICADOS"/>
    </parameters>
    </taskFlow>
    and
    <taskFlow id="AlumnosSolCertificados2"
    taskFlowId="/WEB-INF/Aumnos/AlumnosSolCertificados.xml#AlumnosSolCertificados"
    activation="conditional"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    active="#{activacionRegion.regionCompulsasActivation}">
    <parameters>
    <parameter id="TipoPantalla"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"
    value="COMPULSAS"/>
    </parameters>
    </taskFlow>
    All this works ok when I click on B showdetailitem after intially having shown A. The task flow first terminates and then initiates a new taskflow.
    But when I reactivate showdetailitem A clicking on it, the taskflow is first activated and then deactivated loosing all its initialization.
    The problem is that ADF first executes always the conditional activation of the first showdetailitem and the the conditional activation of the second showdetailitem what is ok in one sense but not on the other because it closes the taskflow after having been opened.
    Do I have any way to avoid this and control that the taskflow is always first deactivated and then activated ?

  • Checking for Pending Changes when a region changes

    Hello community,
    I developed my whole application using a main page Template, which includes a region. This way, we have a main menu and the region gets updated with every different taskflow as the user navigates through.
    The problem is, I don't get Pending Changes warnings when I leave a taskflow that I have modified. In other words, the system doesn't warn the user that he will lose whatever work he had done if he leaves that page.
    I did some research on the topic and found out that ADF has some native features to handle this, but it seems that it requires the system to be built according to some specific practices, and the way I built my application (using the region as the main stage) doesn't seem to support this feature, am I correct?
    The question is, how can I implement a pending changes warning system, without changing too much of my application? Any tips will be appreciated!!
    Thanks in advance,
    Daniel

    It seems that the ADF's built-in "Uncommitted Data Warning" functionality is what you need. However, its behaviour depends on some conditions. For example, if you are using regions, it will depend on the transactional behaviour and the DataControl scope of the corresponding Bounded Taskflow (e.g. on whether the taskflow creates a new ADF Controller transaction and/or on whether it uses an isolated DataControl frame).
    Have a look at this article that explains this topic in great details. Please, put your attention at the table in the "The User Experience" section:
    http://www.oracle.com/technetwork/developer-tools/adf/unsaveddatawarning-100139.html
    Dimitar

  • URL region error when changing tabs

    G'day all,
    I've created a page in my app to have a url region in it but every time I access that page then go to another I get the dreaded /pls/otn/wwv_flow.accept was not found error.
    I've now tried in 3 environments:
    1. Oracle HTMLDB site - app 2780 page 5
    2. DB 9.2.0.4 Win2K HTMLDB 1.6.1
    3. DB 10g Linux RedHat EL 3.0 HTMLDB 1.6
    and get the same result on all of them.
    The URL I'm currently trying is very basic (http://www.google.com.au)
    Any ideas ???
    Greg

    Greg,
    URL regions work ok for pulling content from another site onto your HTML DB page. They don't work as well for situating that site's page within the FORM that is an integral part of each HTML DB page and having the "pulled" page operate as it would in an independent request. First, there are HTML issues that are not immediately solved having to do with relative vs. absolute URLs on the pulled page, where that page gets its images and script, the base HREF, etc. Second, there are limitations on the type of response returned by that page request: anything other than HTML will trip up the underlying use of utl_http.request. Third, forms that operate correctly in the foreign page when requested natively may not (often won't) work when embedded within the HTML DB standard page form.
    Scott

  • Why do my video timings, specially in the parts where there are titles get changed when changing the format in a file converter?

    Hi, i am currently working on a project in NSTC format but seem to have a technical problem. I have exported it (in wmv.) but i want to convert it to MP4 (iPod) and DVD format. Now, I have tried to convert the video with many pieces of software and they all seem to change my timings (e.g a title is shown before it should). This doesnt happen in the .wmv file but it seems to happen on both DVD and NSTC. Am I doing something wrong in premiere or is it another problem?
    Thanks in advance

    I am not sure that I am following. You have a Sequence in PrP, and have your Titles positioned and their Duration set, as you need. (I'm assuming Lower Thirds, or similar). Your preview verifies that everything is proper and satisfactory. Then, when you Export to certain formats, the Titles have "moved," so that they no longer accompany the proper visual from, say Video Track 1. Is that correct? If so, I am sorry to say that I have no idea how that could happen. I just want to get clarification on the exact problem, and will consider what could be afoot. Also, others will likely benefit from a bit more info.
    Good luck,
    Hunt

  • How to promt user to save changes when changing non-database fields?

    Hi,
    I have a form with two tabs. The datablock Block_1 on tab_2 is based on a database view. But all the displayed items of Block_1 are non-database items. Whenever a user changes some items in Block_1 and presses save button, the values from non_db items get copied to the db_items (based on view) and commit_form is called. This works fine.
    But the problem here is: after changing some items in block_1, if the user navigates to some other option/form from the menu , the form doesnt promt the user to 'save the changes' and all the changes made are lost. How can I fix that?
    I have a form level key-exit trigger, (which does not fire) with following code :-
    Declare
      X  Number;
      alert_is             alert;
    Begin
    If :System.Mode = 'ENTER-QUERY' Then
           Exit_Form;
    Else
      If :System.Form_Status In ('NEW','QUERY') Then
           alert_is := FIND_ALERT('TMPL_EXIT'); -- "Are you sure you want to exit?"
        X := Show_Alert('TMPL_EXIT');
        If X = Alert_Button1 Then
           Exit_Form(no_validate);
        End If;
        Else
           Exit_Form;
      End If;
    End If;
    End;

    Slava Natapov wrote:
    Samita wrote:
    Whenever a user changes some items in Block_1 and presses save button, the values from non_db items get copied to the db_items (based on view) and commit_form is called. Try to copy values to the db_items not in save button, but in WHEN-VALIDATE_ITEM of non_db items.- I created the non-db items becoz, it was asking me 'Do you want to save changes', even when I only queried data from the view (becoz i was doing some computations while displaying the items. and the form assumed that the DB items were begin changed ). Inorder to get rid of that problem, i used mirror_items (non-db) for all the db items.
    So under this scenario, when i copy values to the db_items in WHEN-VALIDATE_ITEM trigger of non_db items, the form considers the db_items are changed and asks 'Do you want to save changes' even when the user has not made any changes and only queried data.
    Edited by: Samita on Dec 9, 2009 10:12 AM

  • What are the things to be changed when changing page name, model, jws, etc?

    Hi Everyone,
    My jdev version is 11.1.2.3.0.
    I have developed one ADF application with one page and it is working fine.
    Now i need to change my page name so i modified and it is also working fine.
    But while deploying it gives error like model-viewcontroller already exists because previous application without changes is already there in server.
    without disturbing the previous application i need to deploy this changed application as a new application to the web logic server.
    For that what are all the changes i need to perform and where to perform?
    Please give suggestions.
    Thanks.

    You only need to change the webroot and the application name (you may try with the same application name, but I', not sure it works then).
    When you then deploy the server take the ear a new application.
    Timo

  • Automatic batch change when change in stock happened.

    hi dudes,
    i am having the requirement like when ever change in stock for a material after GR or GI, the batch number should be changed for whole quantity.
    plz respond asap with an advice.
    thanks and regards
    Robert.

    Get a Z program developed which gets trigerred when a Batch GR or GI is happened, this Z program should create a new batch, copy the characteristics of the old batch, and do a batch to batch transfer of stock for that material from old batch to new batch.
    Or to post a GR and GI you mean when GR is done to the same batch.
    Get a Z transaction for GR and GI with the link to the above scenario.

  • Fontface changes when changing html of text

    I have a textfield nested in a symbol and am using an Adobe web font (droid-sans). When I change the text inside the textbox with something like the following:
    sym.getSymbol("captionButton").$("textBox").html("Hide Captions");
    the fontFace APPEARS to go to some other sans font and seems bold from that point forward. Do I need to reset all the css properties of the fontface every time I change html text in a textbox. And if so, could someone tell me the correct sytax, given the action above?
    Thanks.

    You mean I have to break it again ;-) OK, I'll try to find a previous version. OK, I commented out the css setting on init and the css settings when the caption button is clicked.
    whoops. looks like a bad upload. I'll try again in a few minutes.
    OK, uploaded. Sorry I had to include some assets just so it would load but it's all in a zip file. Ironically, downloading it to test it, it doesn't change to bold but it does seem to change fontfamily so the concept is the same.
    https://www.dropbox.com/s/wzr5s3nb12uccu4/sample.zip

  • BOM Component changes when changes done in VC

    Hi All,
    When ever we are changing the characteristic values in Variant configuration, it result the component changes in the BOM.
    Please any body let us know how to find the what are the component changes in the BOM when we change any characteristic value in VC. Is there any FM or it will store in any table?
    Regards,
    Vasu.

    Sure Vasu,
    Find explanation on  this as below :
    BOM components are selected by making use of a special type of dependency called SELCETION CONDITIONS.
    If you want to find which BOM components will be selected on selecting which characteristic value, then follow the below given procedure :
    1. goto T.Code CS03.
    2.enter BOM header name , plant etc. and press enter.
    3. now you are in inside BOM.
    4. Select any BOM component for which you want to check when will it be selected during configuration.
    5. then, in top menu , choose  Extra --> Object Dependencies --> Assignments
    6. It will display all Object Dependencies assigned to that BOM component.
    7. Select the Dependency with type Selection Condition.
    8. Click on Dependency editor.
    9. It will show you the Dependency code
    10. when the condition as per this code is satisfied, the component is selected during configuration.
    Please revert back if you have any doubt.
    Reward Points.
    Regards,
    Gaurav Raghav.

  • Score Window:  Thru Instrument no longer changes when changing tracks

    Today is my 8th day working in the score window and all of the sudden the thru instrument no longer changes to the track (stave) selected in the score window.
    What button/key command did I press and how do I get the previous behaviour back?

    some of theswe 'inconsistencies' are there for a reason:
    - because that is the way the program evolved
    - because they are not inconsistencies on another level or work flow.
    also you should be aware that logics philsophy is to be customizable. in general it is almost always possible to set something up so that it behave you would like or expect it to. there problems inherent with this kind of philosophy, but it is what makes logic unique and very flexible.
    i would strongly advise you to start perusing the ley command list at every possible moment. reassign key commands so that they behave more consistently for you. for example i have developed my own heirarchy of key commands:
    - single strokes for all the most commonly invoked key commands and opening of editors.
    - any other editor or subeditor i will use the 'shift' modifier (ie for me shift means open...)
    - then complex modifiers for actions that are quite drastic, such as merge etc.
    i try to keep all KCs relevant to their function...so for example
    c = convert
    m = mute
    q = open event editor (ok not that one so much)
    finally, when in doubt customize, customize, customize.

  • Safari 5.0 - URL does not change when changing location

    I have noticed this on two Macs running 10.6.3. When moving between pages (eg, clicking on a link within a page, or using the Google search bar to locate and load a new page), the URL in the address bar does not change to the new location. It remains at the
    This applies whether the new page is within the same domain, or is at a different location.
    Specific test: Load http://news.bbc.co.uk in Safari. Towards the top left of the page, there's a link to the BBC home page, which should appear in the status bar as "http://www.bbc.co.uk". Clicking on it will send you to that page, but the URL will remain as the news subdomain. If you click to another tab, then click back, it'll then update correctly.
    Matt

    Hi Matt,
    MIght be corrupted Safari pref files.
    Go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop.
    Relaunch Safari and see if that makes a difference. If not, move the .plist file back to the Preferences folder. If Safari functions as it should, move that .plist file to the Trash.
    If the problem persists, go to ~/Library/Caches. From the com.apple.Safari folder move the "cache.db" file to the Trash. Relaunch Safari.
    Carolyn

  • Message read status not changing (when changed on the server)

    I have Mail set up to for Gmail using IMAP. I also have my iPhone set up for Gmail using IMAP. When a message gets marked as being read (either by reading it in Gmail, Mail or my iPhone) Mail does not update the status to read. If I read the message on Gmail or in Mail my iPhone updates the status to read. Shouldn't Mail update the status of the message to read when it changes on the server?

    Try - https://www.cibc.com/ca/personal.html
    https://cibc.com is not the same as https://www.cibc.com <br />The certificate is only valid for https://www.cibc.com , not https://cibc.com

  • Random changes when changing setting for individual slide in a slideshow

    I've used iPhoto for years and produced many slideshows. However, now when I try to use Ken Burns Effect for an individual slide, I click on the "start" area, adjust my slide, click on "end," and then iPhoto jumps to a totally different slide in the slideshow. When I go back to the slide I wanted to work with, nothing was saved, and the same random change of picture happens.
    Actually, the Ken Burns Effect hasn't worked correctly on ANY slide I've tried.
    Also, when I try to rearrange the slide order, the slides may stay in the correct order for a few seconds, but then a slide may jump four slides to the right (and again out of order). This behavior is strange and random. It is infuriating and I don't know what to do.
    Any help would be greatly appreciated.
    ALSO, when I export a slideshow with music, the song plays fine for a few minutes, but then another song starts and the two songs are playing on top of each other (actually, it may be the same song playing over itself too).
    What gives?!

    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild.
    Regards
    TD

Maybe you are looking for

  • My MacBook Pro be ballin' - beachballin' that is. Big freeze problems.

    Hi, My MacBook Pro has decided to start freezing up and beachballing whenever I use Skype, Mail, Plex and sometimes when I use Launchbar. Usually my MacBook locks up for anything from several seconds to a few minutes, making it nearly impossible to g

  • Where is iphoto on my macbook?

    Where is iPhoto on my MacBook? I thought iPhoto was standard to Apple products, but I bought this MacBook and it has no iPhoto. Is that unusual?

  • Cancelling due to new $30 fee

    I straight cancelled due to the gouging by a company I have been loyal to for 13 years.  << Comment removed to comply with Verizon Wireless Terms of Service >>  I will not be held at gunpoint for a $30 surcharge as well as them cancelling the new eve

  • Unusual IOPS MAPS Result in Logarithmic Notation

    The performance metrics report for disk utilization conducted for 72 consecutive hours on a Server 2008 R2 SP1 with a 64TB RAID-6 array being used for a video security camera deployment (110 video cameras) shows the following: Average Disk IOPS 7.320

  • How can I do this?  Need to get two servers running, both need port 80.

    Hi all, I have an XServe running OSX Server. I also have a DigiDelivery Server (standalone file exchange box). The DD Server must have static IP and port 80 routed to it to work. The XServe must have static IP and port 80 working to host websites. I