Javascript  before/after Page Load

hi, i want to call javascript before or after page is loading,
is it possible?

Hi,
Under Page Rendering--->
Open the page definition
Under --> Display Attributes
change to 'Donot focus cursor'
In Page html body attributes
enter --> onload="set_focus();"
bye
Srikavi

Similar Messages

  • ADF Question: included jsp action firing after page load

    Hi all,
    I am using JDeveloper 10.1.3.3 and ADF + BC.
    Here is another interesting situation for you. I have a page with an included jsp at the top with tabbed navigation.
    My page is for entering an order. Users can have multiple orders "open" in other tabs at the same time. Users can also have many other non-order pages opened in tabs. We are using the same View Objects (Entity Based) along with Transient View Objects on each order.
    Each order tab needs to "remember" the orderId so that when the user clicks on a tab, the appropriate rows are set in the order that is to be "opened". This occurs in a tab's action() - setting the orderId and forwarding to the appropriate page (if different) or reloading the same page with the new id.
    On page load we try to get the tab's orderId and load that as the current row of all of our view objects. This should make it seem like they are all concurrently running.
    The problem is when going from order to order, once the tab is clicked, the page's OnPageLoad method runs BEFORE the action of the tab click is processed. Therefore the order that loads thinks it is the previous order, and does not load the correct View Object rows.
    Does anyone know how we can force the tab action to occur before the page load so that we can get the proper orderId?
    Thanks,
    Heather

    Thanks for your speedy reply Frank,
    We are using the onPageLoad from the OnPageLoadBackingBeanBase which implements the PagePhaseListener.
    In this we are doing something like:
            if (isPostback()) {
                String selectedTabNum =
                    EL.getAsString("#{TabCounter.currentSelectedTab}");
                String test = EL.getAsString("#{TabCounter.tabOrderId" + selectedTabNum + "}");
                System.out.println("tab num " + selectedTabNum);
                System.out.println( "testing " + test );
            }our tab counter (a session bean) has these two methods (among others):
        public void setCurrentSelectedTab(int currentSelectedTab) {
            this.currentSelectedTab = currentSelectedTab;
            for(int i=1;i<= 20; i++) {
                EL.set(BACKING_START+"selectedTab"+i+"}", false);
            EL.set(BACKING_START+"selectedTab"+currentSelectedTab+"}", true);
        public String getNextAvailableTab () {
            for(int i=2;i<=20;i++) {
                boolean isTab = (new Boolean (String.valueOf(EL.get(BACKING_START+"render"+i+"}")))).booleanValue();
                if (!isTab) {
                    return String.valueOf(i);
            return "0";
        }our tab header (request bean) has this method as the action for clicking a tab:
            System.out.println("handleTabNavigation");
            String componentId = actionEvent.getComponent().getId();
            String selectedTab = componentId.replaceFirst("tab","");
            int selectedTabNum = new Integer(selectedTab).intValue();
            EL.set("#{TabCounter.currentSelectedTab}", selectedTabNum);
            String tabType = EL.getAsString("#{TabCounter.tabType"+selectedTabNum+"}");
            if (tabType.equals("regular")) {
                String orderId = EL.getAsString("#{TabCounter.tabOrderId"+selectedTabNum+"}");
                EL.set("#{processScope.unfinishedHeaderId}", orderId);
            } else if (tabType.equals("standing")) {
                String orderId = EL.getAsString("#{TabCounter.tabOrderId"+selectedTabNum+"}");           
            }Thanks,
    Heather

  • Have been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's and the same if I click a link on the page.

    been running version 4 for a week without problems. Today, downloaded MS live security update, and have had problems since. when I click on a favorite site, it takes 20 to 40 seconds before the page load's.'''bold text'''

    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • How to initialize an adf component before a page loads

    Hi all
    I use JDeveloper 11.1.2.2.0
    I have two pages:
    first page has a link to a second page
    <af:document title="first.jspx" id="d1">
      <af:form id="f1">
        <af:commandLink text="Page 2" id="cl1" action="goToSecondPage" actionListener="#{Bean.handleLinkActionEvent}"/>
      </af:form>
    </af:document>and the second page has an inputText component:
    <af:document title="second.jspx" id="d1">
      <af:form id="f1">
        <af:inputText label="Text" id="it1" binding="#{Bean.inputText}" readOnly="true"/>
      </af:form>
    </af:document>First I load first.jspx and than I click the link. This event is handled in handleLinkActionEvent() method, in which I want to set a value to the inputText component of the second page. But I can't do it, because as expected I get NullPointerException.
    So the question is how to initialize an adf component before a page loads?
    Evgeny Michuk
    Edited by: Evgeny Michuk on Oct 4, 2012 11:30 PM

    Thanks a lot for your replies and links, it gives me some new knowledges.
    I got your approach and achieved the aim for the described situation with tag <f:setPropertyActionListener>:
    <af:commandLink text="Page 2" id="cl1" action="goToSecondPage"
                           actionListener="#{Bean.handleLinkActionEvent}" binding="#{Bean.firstPageLink}">
      <f:setPropertyActionListener target="#{pageFlowScope.text}" value="Hello, World!"/>
    </af:commandLink>and for the inputText component I set the value:
    <af:inputText label="Text" id="it1"  binding="#{Bean.inputText}"
                                  readOnly="true" value="#{pageFlowScope.text}"/>I used request scoped managed bean and it is shared for both pages.
    I understand that I can set a value of some attribute for managed bean
    and use it to set a value for inputText component of the second page,
    but as I understand it is almost the same way as usage of tag <f:setPropertyActionListener>.
    In my real situation on the second page I have a dynamic table, and it's field is read only.
    Structure of this table depends on a link clicked on the first page.
    So I define components for table columns in runtime, it may be outputText, inputDate, goLink and some others.
    And I have to get table through the UIComponent binding to set columns.
    Certainly I can define all needed components for all columns
    and render it according to the column types
    <af:table value="#{Bean.collectionModel}" var="row" id="t1" binding="#{Bean.mainTable}">
       <af:forEach items="#{Bean.columnDescriptionList}" var="column">
          <af:column headerText="#{column.caption}" id="c1">
             <af:outputText value="#{row[column.fieldName]}" id="ot1" rendered="#{column.type == '1'}"/>
             <af:inputDate value="#{row[column.fieldName]}" id="ot2" rendered="#{column.type == '2'}"/>
             <af:selectBooleanCheckbox id="sbc1" selected="#{row[column.fieldName] == '1'}" rendered="#{column.type == 'n'}"/>
          </af:column>
       </af:forEach>
    </af:table>but I think it is not very good.
    Have you any idea?
    P.S. I hope I clearly explained my situation =)
    Evgeny Michuk

  • Dynamically setting where clause parameter before the page load

    Hi Experts,
    I do have the following requirement.
    I am working on jsf page in ADF10.1.3.3. I have a View Object which displays the results on the screen. Can someone provide me some example where I can dynamically set the where clause parameter to my Query in VO before the Page Load happens(By Overriding the Prepare Model) and display results on screen.
    Thanks

    Hi,
    Thanks for yor advice.
    I need to write the method in Prepare Model method when the page loads and not in AM.
    Here in the page there is no action as such.
    On the Page load we need to directly set the Where Clause on the VO.
    Provide me some examples if any.
    Thanks

  • How to execute a method after page Load?

    My question is very similar to what was discussed in following thread:
    How to execute a method after page Load?
    My requirement is that I want to run a method in backing bean of a page, immediately after the page gets loaded. In that method I want to invoke one of the method action included in the pagedef of this page, conditionally.
    I tried using the approach given in the above thread, i.e to use <f:view afterPhase="#{backing_security.setPermPriv}">, but the problem is that our page is not using 'f:view' , so I explicitly added one f:view with afterPhase property set , but it is not working, page it self is not getting loaded, it is throwing the error:
    Root cause of ServletException.
    java.lang.IllegalStateException: <f:view> was not present on this page; tag [email protected]e8encountered without an <f:view> being processed.
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.setProperties(UIXComponentELTag.java:108)
         at javax.faces.webapp.UIComponentClassicTagBase.findComponent(UIComponentClassicTagBase.java:733)
         at javax.faces.webapp.UIComponentClassicTagBase.doStartTag(UIComponentClassicTagBase.java:1354)
         at org.apache.myfaces.trinidad.webapp.UIXComponentELTag.doStartTag(UIXComponentELTag.java:71)
         at oracle.adfinternal.view.faces.taglib.UIXQueryTag.doStartTag(UIXQueryTag.java:41)
         at oracle.adfinternal.view.faces.unified.taglib.UnifiedQueryTag.doStartTag(UnifiedQueryTag.java:51)
         at oracle.jsp.runtime.tree.OracleJspBodyTagNode.executeHandler(OracleJspBodyTagNode.java:50)
         at oracle.jsp.runtime.tree.OracleJspCustomTagNode.execute(OracleJspCustomTagNode.java:262)
         at oracle.jsp.runtime.tree.OracleJspNode.execute(OracleJspNode.java:89)
         at oracle.jsp.runtimev2.ShortCutServlet._jspService(ShortCutServlet.java:89)
         at oracle.jsp.runtime.OracleJspBase.service(OracleJspBase.java:29)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:665)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:387)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:822)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:746)
    Please help to resolve this issue, or am I doing anything wrong?

    Hi,
    I assume that your view is a page fragment and here - indeed - the f:view tag cannot be used. If you use ADF then one option would be to use a custom RegionController on the binding layer to listen for the render phase to invoke the method. Another option would be to use a hidden field (output text set to display="false" and have this component value referencing a managed bean property. The managed bean property's getter method can now be used to invoke the method you want to run upon view rendering
    Frank

  • Using af:clientListener after page load

    Hi,
    I need to run a js function after* the page finishes loading.
    I tried to use <af:clientListener type="load" method="fillProjectList"/>, but the script starts running before the table on the page finished loading.
    The table has: clientComponent="true"
    How can I make the script to start runng only after all table components are loaded?
    Thank you,
    Nina

    Ah.. i guess it will not work as you cannot do any UI activity after the render response phase. May be try this
    Javascript into JSPX and run after page is loaded?

  • How to call a javascript method after table load on JSFF Fragment load?

    Hello,
    The usecase is to invoke a javascript method after table is done loading (fetching data) when user lands to a JSFF fragment. With JSPX pages I can achieve that by using PagePhaseListener. I have tried with RegionController as follows, and the problem i face is that I cannot prevent multiple calls to the Javascript call when user presses a tab or button in a screen, or changes drop-down value with autosubmit on.
    import javax.faces.context.FacesContext;
    import oracle.adf.model.RegionBinding;
    import oracle.adf.model.RegionContext;
    import oracle.adf.model.RegionController;
    import org.apache.myfaces.trinidad.render.ExtendedRenderKitService;
    import org.apache.myfaces.trinidad.util.Service;
    public class MyListener implements RegionController{
    public MyListener() {
    super();
    @Override
    public boolean refreshRegion(RegionContext regionContext) {
    int refreshFlag = regionContext.getRefreshFlag();
    System.out.println("Render flag is: "+refreshFlag);
    if (refreshFlag == RegionBinding.PREPARE_MODEL)
    initializeMethod();
    regionContext.getRegionBinding().refresh(refreshFlag);
    return false;
    public boolean validateRegion(RegionContext regionContext) {
    regionContext.getRegionBinding().validate();
    return false;
    public boolean isRegionViewable(RegionContext regionContext) {
    return regionContext.getRegionBinding().isViewable();
    public void initializeMethod() {
    FacesContext f = FacesContext.getCurrentInstance();
    ExtendedRenderKitService service = Service.getRenderKitService(f, ExtendedRenderKitService.class);
    service.addScript(f, "myJSFunction();");
    @Override
    public String getName() {
    return null;
    I need the javascript to be called only once after the table is done loading when user lands to a fragment (jsff).
    Any ideas appreciated?
    JDeveloper version is 11.1.1.5.0
    Thank you.
    Valon
    Edited by: Valon on Apr 11, 2013 3:10 PM

    One of the requirements is to compare every row with the next row and highlight the changes. There are other requirements as well where JavaScript solution is used.
    The question remains the same. Is it doable or not without changing the solution from JavaScript solution to server-side solution ? Can we call a JavaScript only once when the user lands to a jsff fragment ?
    Hope that is clear.
    Thanks.
    Valon

  • Major annoyance - Safari switching tabs/windows after page load

    When I cmd-click on a link to open a page in a new tab, it starts to load the page. If I switch tabs or windows before the page is loaded, it will switch back to that tab/window when the page load is complete.
    Who thought this would be a good idea?!? This is the kind of impossibly poor user interface that I expect when I run Windows. Why has it infected my Mac? I DO NOT WANT MY SOFTWARE CHANGING MY INTERFACE ON ME!!! When I bring a tab or window to the front, I expect it to STAY in the front!!!!!
    PLEASE, FOR THE LOVE OF EVERYTHING SANE, FIX THIS NOW APPLE!!!

    BTW, this does not happen all the time - only on certain pages. A good example is the Washington Post. Click on an article, then switch to a different tab/window before the page completes loading. When the page load completes, it will switch your tab/window, bringing the article to the front. Very annoying.
    I suppose if could be an issue with the site using some severely twisted JavaScript. However, I have never seen this behavior before in Safari until very recently, and it does not happen in FireFox.

  • Spry Accordion - Tabs open and then close after page loads

    I am using a Spry Accordion menu driven from a database.
    The menu opens up during the page load and then closes.
    I'm using SpryAccordion.js 1.6.1
    And to open a preset tab, I'm using:
    <script type="text/javascript">
    <!--
    var Accordion1 = new Spry.Widget.Accordion("Accordion1",{useFixedPanelHeights:false, enableAnimation: false, defaultPanel: 0 });
    //-->
      </script>
    But, all of the tabs open and then close on page load.
    My page:   http://www.texashotjobs.us/00C01.aspx
    Any fix for this??
    Thanks, Ron

    Well to both thanks.  Actually I wasn't disappointed as I had a two part question...
    I tested the 1.6 JS and remembered that I had to modify the 1.4 so that tabs actually would link.  So I reverted back to 1.4.
    So, going to 1.6 fixed the open panel on load but "unfixed" the panel tab from linking.....
    So changing this in the 1.6 js fixed the link issue as well:
    Spry.Widget.Accordion.prototype.onPanelTabClick = function(e, panel)
        if (panel != this.currentPanel)
            this.openPanel(panel);
        else
            this.closePanel();
        if (this.enableKeyboardNavigation)
            this.focus();
    //    if (e.preventDefault) e.preventDefault();
    //    else e.returnValue = false;
    //    if (e.stopPropagation) e.stopPropagation();
    //    else e.cancelBubble = true;
    I t appears everything is working........
    Thanks, Ron Gaddis
    Visual Reality Productions

  • Content getting disappear after page load in safari

    Content of the webpage get dissappear after the page load in safari. I am currently using IOS7.1 in my ipad mini
    Url:
    http://wealthforumezine.net/ThinkBIGBusinessPerspective230314.html#.UzAF2PmSyrM
    http://wealthforumezine.net/FundFocusSBI180314.html#.UzAF6fmSyrM
    the website is devloped using HTML 4.
    Thanks in advance

    I have a similar problem in Leopard with Safari not loading pages correctly. I'm trying to troubleshoot now, so let me ask you some questions to see if its the same problem as mine.
    Are you using an administrator account? On my machine it only acts up on non-administrator account.
    Does Firefox or another web browser load the pages correctly? On my machine it has similar problems to Safari.

  • Cpu not releasing after page load

    I'm a newby to flash. I need to show movie clips based on the
    XML data. The problem is after page is loaded with flash file,
    still CPU is not getting released. What am I doing wrong? After
    page is loaded with the flash file, I want the CPU to go its
    original utilization.
    Here is the sample code.
    import flash.geom.Matrix;
    import flash.geom.Point;
    import flash.display.*;
    import flash.geom.*;
    import mx.services.*;
    _root.lineStyle(1, 0x0000FF, 100);
    var mcMapContent = map_sp.content;
    var my_xml:XML = new XML();
    my_xml.ignoreWhite = true;
    var number_fmt:TextFormat = new TextFormat();
    number_fmt.font = "NumFont";
    number_fmt.size = 4;
    var fileName:String;
    if (!fileName)
    fileName = "test1";
    if (_global.styles.List == undefined)
    _global.styles.List = new mx.styles.CSSStyleDeclaration();
    _global.styles.List.setStyle("themeColor", 0x3366CC);
    _global.styles.List.setStyle("color", 0x000000);
    _global.styles.List.setStyle("backgroundColor", 0xFFFFFF);
    _global.styles.List.setStyle("borderStyle", "solid");
    _global.styles.List.setStyle("borderColor", 0x000000);
    _global.styles.List.setStyle("rolloverColor", 0x5a6970);
    _global.styles.List.setStyle("scrollTrackColor", 0xEEEEEE);
    _global.styles.List.setStyle("selectionColor", 0xCCCCCC);
    my_xml.load("XML/" + fileName + ".xml");
    my_xml.onLoad = function(success)
    var currentNode:XMLNode = my_xml.firstChild.firstChild;
    var LoopI:Number;
    var tmpDepthLevel:Number;
    var X1:Number, Y1:Number, Length:Number, Width:Number;
    var Code_str:String;
    currentNode = currentNode.firstChild;
    tmpDepthLevel = mcMapContent.getNextHighestDepth();
    try
    for (var child_xmlnode = currentNode; child_xmlnode != null;
    child_xmlnode = child_xmlnode.nextSibling, i++)
    TotalVertex_int =
    Number(child_xmlnode.attributes.VERTEX_COUNT);
    X1 = child_xmlnode.attributes.X1;
    Y1 = child_xmlnode.attributes.Y1;
    Width = Number(child_xmlnode.attributes.WIDTH);
    Length = Number(child_xmlnode.attributes.LENGTH);
    Code_str = child_xmlnode.firstChild.nodeValue;
    var my_mc:MovieClip = mcMapContent.attachMovie("MyRect",
    Code_str, tmpDepthLevel, {Name:Code_str});
    tmpDepthLevel++;
    my_mc._x = X1;
    my_mc._y = Y1;
    my_mc._width = Width;
    my_mc._height = Length;
    newMainColor = new Color(my_mc.rect_mc);
    my_mc.Num_txt.setTextFormat(number_fmt);
    name_fmt.font = "NumFont";
    newMainColor.setRGB(0xFF99FF);
    my_mc.Num_txt._yscale = my_mc.Num_txt._yscale * (Width /
    Length);
    my_mc.Num_txt._y = (20 - my_mc.Num_txt._height);
    my_mc.Num_txt._x = 0;
    catch (myError:Error)
    trace("error caught: " + myError);
    finally
    //trace("No Error");

    I'm a newby to flash. I need to show movie clips based on the
    XML data. The problem is after page is loaded with flash file,
    still CPU is not getting released. What am I doing wrong? After
    page is loaded with the flash file, I want the CPU to go its
    original utilization.
    Here is the sample code.
    import flash.geom.Matrix;
    import flash.geom.Point;
    import flash.display.*;
    import flash.geom.*;
    import mx.services.*;
    _root.lineStyle(1, 0x0000FF, 100);
    var mcMapContent = map_sp.content;
    var my_xml:XML = new XML();
    my_xml.ignoreWhite = true;
    var number_fmt:TextFormat = new TextFormat();
    number_fmt.font = "NumFont";
    number_fmt.size = 4;
    var fileName:String;
    if (!fileName)
    fileName = "test1";
    if (_global.styles.List == undefined)
    _global.styles.List = new mx.styles.CSSStyleDeclaration();
    _global.styles.List.setStyle("themeColor", 0x3366CC);
    _global.styles.List.setStyle("color", 0x000000);
    _global.styles.List.setStyle("backgroundColor", 0xFFFFFF);
    _global.styles.List.setStyle("borderStyle", "solid");
    _global.styles.List.setStyle("borderColor", 0x000000);
    _global.styles.List.setStyle("rolloverColor", 0x5a6970);
    _global.styles.List.setStyle("scrollTrackColor", 0xEEEEEE);
    _global.styles.List.setStyle("selectionColor", 0xCCCCCC);
    my_xml.load("XML/" + fileName + ".xml");
    my_xml.onLoad = function(success)
    var currentNode:XMLNode = my_xml.firstChild.firstChild;
    var LoopI:Number;
    var tmpDepthLevel:Number;
    var X1:Number, Y1:Number, Length:Number, Width:Number;
    var Code_str:String;
    currentNode = currentNode.firstChild;
    tmpDepthLevel = mcMapContent.getNextHighestDepth();
    try
    for (var child_xmlnode = currentNode; child_xmlnode != null;
    child_xmlnode = child_xmlnode.nextSibling, i++)
    TotalVertex_int =
    Number(child_xmlnode.attributes.VERTEX_COUNT);
    X1 = child_xmlnode.attributes.X1;
    Y1 = child_xmlnode.attributes.Y1;
    Width = Number(child_xmlnode.attributes.WIDTH);
    Length = Number(child_xmlnode.attributes.LENGTH);
    Code_str = child_xmlnode.firstChild.nodeValue;
    var my_mc:MovieClip = mcMapContent.attachMovie("MyRect",
    Code_str, tmpDepthLevel, {Name:Code_str});
    tmpDepthLevel++;
    my_mc._x = X1;
    my_mc._y = Y1;
    my_mc._width = Width;
    my_mc._height = Length;
    newMainColor = new Color(my_mc.rect_mc);
    my_mc.Num_txt.setTextFormat(number_fmt);
    name_fmt.font = "NumFont";
    newMainColor.setRGB(0xFF99FF);
    my_mc.Num_txt._yscale = my_mc.Num_txt._yscale * (Width /
    Length);
    my_mc.Num_txt._y = (20 - my_mc.Num_txt._height);
    my_mc.Num_txt._x = 0;
    catch (myError:Error)
    trace("error caught: " + myError);
    finally
    //trace("No Error");

  • Loading... spinner persists after page load complete

    Our site uses Ajax and web-services to build html content. At times, the spinning "Loading..." image continues endlessly, seemingly after the page load is complete. This behavior does not occur with Chrome, IE or Firefox. Using the Web Inspector, it appears that all images, xml docs, web-service calls, etc. have completed successfully. To see an example: http://www.bunkerhill.com/dev/website/WebMessages.aspx
    Any help is appreciated.
    TIA

    Is the site entirely Safari compatible? Maybe some part of it isn't working in Safari, and the browser is still attempting to make it work. I'm not a coder (I can barely do anything with HTML), so what I just wrote might be of no use to you.

  • Issue with invoking javascript during jspx page load

    Hi All,
    I am using Jdeveloper 11gR2.
    I have embedded a small javascript snippet in the adf page to invoke a managed bean method during page load.
    <af:serverListener type="onloadEvent" method="#{AMBean.click}"/>
                <af:clientListener method="onLoadClient" type="load"/>
                <af:resource type="javascript">function onLoadClient(event) {AdfCustomEvent.queue(event.getSource(),"onloadEvent",{},false); return true;}</af:resource>
    In the associated managed bean method, I want to change the setContentStyle of all the input text field found during run time -
            System.out.println("There control is inside the listeners");
            FacesContext facesContext = FacesContext.getCurrentInstance();
            System.out.println("facesContext"+facesContext);
            UIViewRoot root = facesContext.getViewRoot();
            System.out.println("root - " +root);
            RichPanelFormLayout formClass = (RichPanelFormLayout)root.findComponent("db");
            System.out.println("formClass - " + formClass);
            List<UIComponent> uiComponentList = formClass.getChildren();
                  for (UIComponent uiComponent : uiComponentList) {
                      if (uiComponent instanceof RichInputText) {
                          //((RichInputText)uiComponent).setDisabled(false);
                          //((RichInputText)uiComponent).setColumns(100);
                         ((RichInputText)uiComponent).setContentStyle("width:200px");
                          System.out.println("uiComponent - " +uiComponent);
    Currently the javascript function "queues" the setContentStyle action for an action event, i.e. during the initial page load, the properties of text fields are not changed, however as soon as i click any button on the page, the text field width is reset to what I have defined in setContentStyle property.
    Is there a way to execute setContentStyle action as soon as the page loads initially?
    Best Regards,
    Ankit Gupta

    Hi Arun,
    Many thanks for the revert.
    The exact Jdeveloper version is 11.1.2.4.39.64.36.1.
    I have a scenario where in the the user will be navigated to a page to display an input form, but the underlying VO will change during runtime which means depending on the value selected by the user, he will be shown an ADF form accordingly.
    Also during runtime, the number of input text fields will change according to the number of attributes in underlying VO.
    Kindly advise based on the use case explained above.
    Best Regards,
    Ankit Gupta

  • Text shifts after page load

    When viewing my site online, the page loads and then the text sometimes shifts and re-positions slightly. Long text blocks may even re-format and become one line less in height. This happens in Safari, Explorer, and Mozilla on Mac and Windows. This only happens occasionally but, where it happens, it is consistent and happens every time. I am using Arial standard font, left justified only, and default text settings for space and inset. So no special font or settings at issue. This happened with iWeb 08 as well as 09.
    Any ideas please ... it makes my site look so scruffy ...... :o(

    Sorry to be slow in coming back on this but I wanted to try Roddy's solution before troubling anybody further. Loosening the text boxes has indeed done the trick. The amount need to loosen is surprisingly large in some cases, and it took several attempts to get everything OK.
    Thank you both for replying so quickly. If you want see the results of your advice in a problem free site then go www.cambiguities.com. It is my first attempt at a site and is quite ambitious for a first go. I am a photographic illusion creator and it is my showcase. Who knows ..... you might enjoy it ...... ;o)
    Thanks again

Maybe you are looking for

  • IPhone 5 call quality

    I just bought my iPhone 5. I was disappointed when I received a call and discovered the phone call quality on my end is bad. The other person's voice sounded very tiny and soft although I have already turned up the volume to maximum. Is it that way w

  • How do i get a song to repeat on new itunes update

    Since updating to the newest Itunes I have not been able to repeat songs. How do I do this through Itunes on my computer?

  • Unity Connect and O365 Restrictions

    Hi, Has anyone heard of any updates regarding the restrictions imposed by Office 365. Unity Connect is limited to a maximum of 19 user per unified messaging service Microsoft are supposed to be opening these restrictions up. Now sure when though. Reg

  • Why does this script behavior change with the phase of the moon ?

    Can anyone from adobe corp or non-adobe volunteers tell me where to look in their docs to find out why this script change its behavior or how to use the debugger to figure out the same. I read the guide and the whole section on debugger and break poi

  • Is there a way to pause the photo slide show on iOS 7?

    I use my slide show for work, but since updating to iOS 7 I can't figure out how to pause on 1 specific photo for longer than 3 or 20 seconds. Is there any way of doing this?