Jdeveloper's design view is bugged.

Hello my Jdeveloper design's view is bugged for long time and looks like that:
http://uploadpic.org/storage/2011/thumb_8iNIQMDt9kYl8kVIaR07nlt.png
any ideas how to fix it? Studio Edition Version 11.1.2.1.0
Edited by: 897833 on Mar 13, 2012 7:46 AM

See if the tip in this blog helps http://rcastrosp.blogspot.com/2011/09/jdeveloper-1112-fails-to-render-web.html
Timo

Similar Messages

  • CS3 Design View layout bug

    Note: this renders correctly in browsers and DW 8 design
    view.
    Does anybody else get this effect: css is used to but a solid
    background colour on a h1 tag. With the following code
    <!-- InstanceBeginEditable name="regContentMain" -->
    <h1>Introduction</h1>
    The editor buts the background in the correct place, but the
    actual h1 text starts 2/3 they way down the background.
    If you put a blank div <div></div> after the
    template comment and before the <h1> the background gets
    padded down to fit correctly with the text.
    If you detatch from the template, it renders correctly.
    Bug I assume.
    Steve

    Probably not. Show us the whole page, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "srbutler" <[email protected]> wrote in
    message
    news:f2ek5g$51c$[email protected]..
    > Note: this renders correctly in browsers and DW 8 design
    view.
    >
    > Does anybody else get this effect: css is used to but a
    solid background
    > colour on a h1 tag. With the following code
    > <!-- InstanceBeginEditable name="regContentMain"
    -->
    > <h1>Introduction</h1>
    >
    > The editor buts the background in the correct place, but
    the actual h1
    > text
    > starts 2/3 they way down the background.
    > If you put a blank div <div></div> after the
    template comment and before
    > the
    > <h1> the background gets padded down to fit
    correctly with the text.
    >
    > If you detatch from the template, it renders correctly.
    >
    > Bug I assume.
    >
    > Steve
    >
    >
    >

  • JDeveloper ESB designer view points a server, how to change this to another

    Hi,
    I have developed a ESB service that deployed and tested on my Local system. Its tested and running well.
    However now I have to develop another service that has to be registered under one of the existing service group.
    But in the eSB designer view I can see only localsysem specific EBS systems/and service groups. How to change this to point to other server.
    -- Khaleel

    Hi Chandrasekhar,
    Thanks for your reply. Yes thats correct. Infact after doing some research finally I got it.
    However I hope a restart of the JDeveloper as a 4th step is required. but it works well.
    Thanks.
    --Khalee                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • CS4: Editable Region locked in design view - weird bug in CS4?

    Hi,
    I've the following issue to report: My template based webpages contain 3 editable regions. One of them (cText_m0) refuses editing in desgin view though it's editable (colored code) in code-view. Neither ALT+click nor doubleclick helps.
    URL of one of the pages afflicted: http://www.schule.suedtirol.it/Lasis/r3.htm
    The problem did not occur in DW-Versions minor to CS4.
    Is there an issue with the page or with DW CS4?
    Thanks for helping me.
    Regards
    Harald Angerer

    On Fri, 3 Apr 2009 09:29:57 +0000 (UTC), "Janine_Trumel"
    <[email protected]> wrote:
    > Sorry, I cant quite see why the first line of code is
    causing the problem.
    Regarding the XML declaration that Nancy suggested omitting,
    the XHTML
    specs suggest using the line, but it is not required if the
    page uses
    either UTF-8 or UTF-16 character encoding. See
    http://www.w3.org/TR/xhtml1/#strict
    where is says in part, "An XML
    declaration is not required in all XML documents; however
    XHTML document
    authors are strongly encouraged to use XML declarations in
    all their
    documents. Such a declaration is required when the character
    encoding of
    the document is other than the default UTF-8 or UTF-16 and no
    encoding was
    determined by a higher-level protocol."
    IE only pays attention to the DOCTYPE if it is the very first
    thing in the
    page. Put anything before the doctype and IE will drop to
    quirks mode.
    That's just an IE bug that you'll have to live with.
    Gary

  • Design View and overwritten methods in subclasses

    Dear all
    DESIGN VIEW DOESN'T WORK WITH OVERWRITTEN METHODS IN SUBCLASSES
    I am developing a reasonably large applet-based menu using
    JDeveloper. Because much of it varies only in small details, I
    had planned to create a base class to hold all the common
    elements, which would then call an emtpy method from jbinit().
    Each menu applet would then extend this class and overwrite the
    empty method to initialise components specific to their needs.
    This worked fine when implemented in a few test menus and viewed
    in a browser.
    However, problems arise when I try to work with the individual
    sub classes in JDeveloper's Design View - they don't appear!
    This means I will probably have to revert to "cut and paste" to
    create further menus unless anyone can point me in a better
    direction, or show how to get around this. Any help much
    appreciated.
    Thanks.
    Nick
    null

    Nick,
    I know of a similar situation when trying to use your own
    designed JavaBeans which has the same problem -
    thus I am suggesting the same solution.
    The problem is that JDeveloper IDE uses a ClassPath
    (IDEClassPath).
    Your code ( Project Output Path) is NOT in the IDEClassPath.
    (for good reason).
    So, my suggestion is as follows:
    Exit JDeveloper
    Edit <JDeveloper>\JDeveloper.ini
    Locate: IDEClassPath
    Add ;..\classes
    to the end of the line.
    Run JDeveloper, open your workspace, project.
    Select menu: Project | Properties.
    Switch to 'Paths' tab.
    Change Output root directory to:
    <JDeveloper>\classes
    Press OK
    Rebuild your project.
    Validate you can go into design mode on the base class.
    Validate you can go into design mode on derived classes.
    Please post follow up message (success or failure) so we
    can file a bug if necessary.
    Thanks,
    John.
    Nick Perrett (guest) wrote:
    : Dear all
    : DESIGN VIEW DOESN'T WORK WITH OVERWRITTEN METHODS IN SUBCLASSES
    : I am developing a reasonably large applet-based menu using
    : JDeveloper. Because much of it varies only in small details, I
    : had planned to create a base class to hold all the common
    : elements, which would then call an emtpy method from jbinit().
    : Each menu applet would then extend this class and overwrite the
    : empty method to initialise components specific to their needs.
    : This worked fine when implemented in a few test menus and
    viewed
    : in a browser.
    : However, problems arise when I try to work with the individual
    : sub classes in JDeveloper's Design View - they don't appear!
    : This means I will probably have to revert to "cut and paste" to
    : create further menus unless anyone can point me in a better
    : direction, or show how to get around this. Any help much
    : appreciated.
    : Thanks.
    : Nick
    null

  • Style Message in design view with Apache Trinidad HTML components

    Hi !!!
    I'm using Apache Trinidad HTML components. In that components after using Table Layout I'm trying to use Row layout after dragging the row layout to the design view the following message is appearing in the design view, the same is happening in the browser window also.
    style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px"
    Thanks in Advance
    Anil Kumar Golla

    Ric,
    First I created an application by selecting New Application from the Application Navigator. In that application window I submitted relevant names for creating the new application, after that it displayed the project window in that I given the project name then in Jdeveloper's Application window the project name is displayed from there I selected new by right clicking, in that New gallery window, I selected Web Tier > Page Template > Ok. In the Create Jsf Page template window I created a File Name and Facet Definitions namely North, West, East, South and Center. After that Jdeveloper created the new JSPX page. In that page first I dragged panel stretch layout from Adf Faces to the Jdeveloper's design view and given facet references (North, West, East, South and Center). In the North Portion I dragged the Apache Trinidad HTML's Table Layout component, after that Row layout, then in the design window I'm getting the "style="position:absolute;width:auto;height:auto;top:0px;left:0px;bottom:0px;right:0px". The same is displaying in the browser window also.
    Thanks in Advance
    Anil Golla

  • Why some times jdeveloper does not show a coreect design view ?

    Hi
    thank you for reading my post
    why jdeveloper does not show a correct design view of jsf pages sometimes?
    It does not shows labels and ... , just show tag names like : form , ... ?
    here is a picture for this :
    1-incorrect page:
    http://www.flickr.com/photos/59086726@N00/217556594/
    2-correct page :
    http://www.flickr.com/photos/59086726@N00/217556595/
    I just closed and open the IDE and page designer shows incorrect pages
    thanks

    Also try this...go to the project properties for the View project. Look at the JSF Libraries and remove the two JSF libraries and then re-add them....this sometimes helps.
    Regards
    Grant Ronald

  • JDeveloper 10.1.3.2.0 - How to see content of showDetailItem in Design View

    Hello,
    I am new to use the JDeveloper to create JSF Applications and I learn with the tutorials.
    So I have a question:
    I want to find out: How to see the content of the second or third showOneTab component in the WYSIWYG Design View of a page.jspx?
    For example, I am orientating the tutorial: "Introduction to ADF Faces/Trinidad Using JDeveloper" (http://www.oracle.com/technology/obe/obe1013jdev/10131/trinidad/adf_faces_trinidad.htm)
    Page: table.jspx
    There is the showOneTab "Single Row Select" and "Multi Row Select" and I see only the content of "Single Row Select".
    How can I see the content the table2 of "Multi Row Select".
    I have created the table of "Single Row Select" and can see only this one.
    The download of that example show me in the View of structur the component table2, but not in DesignView.
    Can you help me?
    best regards
    Joachim

    Hello Frank,
    many thanks for your answer. It try it and it works!
    For completion, I think the argument "disclosed" of the component "af:ShowDetailItem" with "default" setting is "false".
    So if I will editing one tab in WYSIWYG editor, I set only this tab disclosed = true.
    All others to "false". When my edit is completed, I set only the first tab to "true" and all other "false", because I want to start with the first tab by first request.
    I look again into the "help". Hopefull in answer:
    Which effect has this argument by deployment?
    There is only the desciption: "whether or not to disclose the children This attribute is not supported on the following agent types: pda, phone, voice."
    I think this is for me irrelevant. My application have to support only a client like a personal computer.
    Which effect has this argument by deployment?
    Or is this only for the WYSIWYG editor?
    Joachim

  • Empty JSF Design view in JDeveloper 11g

    Hello,
    I m newbie in ADF.
    JDeveloper version 11.1.2.2.0.
    Fusion Web Application project.
    After some developing time all my JSF Design view became empty. When I click on that empty surface there some exception raises:
    oracle.bali.xml.share.WeakListenerManager:Sep 20, 2012 7:07:53 PM oracle.bali.xml.share.WeakListenerManager addListener
    WARNING: Tried to add listener that was already attached: listener=oracle.jdevimpl.webapp.grammar.DelegatingGrammarProvider$IdenticalGrammarEventPercolator@17359cbsource=oracle.jdevimpl.webapp.facelets.libraries.FaceletsLibraryMetadataGrammarProvider@820671
    oracle.jps.common:Sep 20, 2012 7:08:00 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation value = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have even number of URI's. Location: unavailable.
    oracle.jps.common:Sep 20, 2012 7:08:00 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. SchemaLocation: schemaLocation value = 'http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd' must have even number of URI's. Location: unavailable.
    java.lang.IllegalArgumentException: can't create position before or after oracle.xml.parser.v2.XMLDocument@bab945
    java.lang.IllegalArgumentException: can't create position before or after oracle.xml.parser.v2.XMLDocument@bab945
    o.bali.xml.dom.position.DomPosition.<init>(DomPosition.java:832)
    o.bali.xml.dom.position.DomPosition.<init>(DomPosition.java:74)
    And nothing else more..
    I have reinstalled my JDeveloper, clean AppData JDeveloper. And still nothing solved. Other Demo Oracle project works fun.
    Pls, help me.
    Sorry for my English.

    A have solved my problem after droping:
    <context-param>
    <description>Security precaution to prevent clickjacking: bust frames if the ancestor window domain(protocol, host, and port) and the frame domain are different. Another options for this parameter are always and never.</description>
    <param-name>oracle.adf.view.rich.security.FRAME_BUSTING</param-name>
    <param-value>differentDomain</param-value>
    </context-param>
    from web xml.

  • JDeveloper 10.1.3.4 design view not work

    Hi,
    I'm working with JDeveloper 10.1.3.4 and ADF Faces. My problem is that i can't view the design view in any page.
    the design view shows the follow message:
    "Type,paste or drag and drop content onto this blank...."
    Thanks in advance.

    Thanks for the feedback.
    Lost page interface. may help to avoid the execution of the filter code at Design Time.
    Regards,
    Didier.

  • BUG: JSP disappears from design view with MyFaces / Tomahawk

    Hi,
    When I try to create a JSF JSP in design view (as opposed to code view) using MyFaces and Tomahawk 1.1.3, the design view will blank and display "Type, paste or drag and drop content onto this blank....". This usually happens after I've dragged half a dozen JSF outputlabels and inputtext boxes. The code still exists in code view, and will even compile and deploy ok, it's just the design view that stops working. The design view usually blanks while I'm switching between the code tabs at the top of the screen, although I'm fairly sure it blanked as I dropped a textbox onto the form once.
    I've restarted JDev, tried to create a second page, clicked refresh etc but I can't get it back. This has happened starting from scratch 3 times now.
    I've switched back to the builtin reference implementation JSF (and no Tomahawk), and JDeveloper works fine, so it seems to be a problem using MyFaces. I've added MyFaces and Tomahawk via Manage Libraries.
    This Oracle article - http://www.oracle.com/technology/products/jdev/101/howtos/myfaces/index.html
    states that the RI version can't be swapped out in JDev Developer Preview version but I understand that's not true now?
    I'm using :-
    JDeveloper SU4
    java 1.5
    Windows XP SP1
    Thanks for any help.

    I found the answer. I went to View, Style Rendering and clicked several of the boxes  Display Media was one.

  • BUG: Extending JDialog error in design view

    I extended JDialog to create a custom Dialog, then when I extend the CustomDialog to create a Dialog in Jdeveloper Design mode it actualy creates the popup dialog instead of the design mode for it (ie it actually renders the final popup as a seperate popup, which would be a really cool feature because you can actually use the popup to test it, but it means you can't edit it with the gui designer)
    OS - Suse 9.3
    Oracle IDE - 10.1.3.3412
    Java Platform - 1.5.0_06
    Here is some sample code:
    package org.cms.custom.swing;
    import javax.swing.JDialog;
    public class CustomDialog extends JDialog
    public CustomDialog()
    package org.cms.screen;
    import org.cms.custom.swing.CustomDialog;
    public class TestDialog extends CustomDialog
    public TestDialog()
    So you go to design mode for TestDialog and it pops up the dialog.........(you may need to build first).....

    The above code does reproduce the error. I reduced it to that code to make sure that it wasn't any of my code doing it and when I made the 2 classes above and go to design mode for the second one it pops up the dialog. You can cut and paste the code as is. The implementation is irrelevant, its Inheritance of a class that extends JDialog that is causing the problem.
    You need to compile the classes, close them, then reopen the second one in design view for the popup to happen.
    Regards
    mark
    Message was edited by:
    user481304

  • JDeveloper Design View

    Hi
    When in design view I can add simple components like buttons, input text, etc. The displays as I would expect (visual button, input text, etc).
    If I try to add a slightly complex component such as a multi-select checkbox the whole of the design view changes from a WYSIWYG view to a view there the components are all in grey boxes.
    When this happens i am presented with the following error in the message log:
    Performing action Preview in Browser...[ from oracle.jdevimpl.webapp.editor.jsp.JspEditor ]
    Invoking command: Insert Multi-Select Checkbox
    javax.enterprise.resource.webcontainer.jsf.lifecycle:29-Jul-2013 15:22:36 com.sun.faces.lifecycle.Phase doPhase
    SEVERE: JSF1054: (Phase ID: RENDER_RESPONSE 6, View ID: /untitled1.jsp) Exception thrown during phase execution: javax.faces.event.PhaseEvent[source=com.sun.faces.lifecycle.LifecycleImpl@2afb925b]
    This is done from a fresh project. If i uninstall JDeveloper and reinstall it the same thing happens when i create a new project. I have also tried deleting my JDeveloper App Data though this did not work.
    Has anyone experienced something similar before/know how to rectify this issue?
    Any help is much appreciated.
    Thanks.
    Graeme.

    I am using 11.1.1.6. I would expect this functionality to work so I think it is a local problem. It is the Multi-Select Checkbox xomponent that I am using. It may be a tag library that I am missing though I am still unable to resolve the issue.

  • JDeveloper 10g Help-Design View doesnt work

    hi
    i rewrite my problem again,that is important to develop java server faces applications.when i create a jsf file in jdeveloper.i see xml representation of the page.in design view i cant see components i just see <root>.... then other form elements like tree.where can i show design view properly? please help
    thanks

    Hi,
    if this is from a brand new project that isn't migrated from a previous version then deleting the JDveloper system directory (or renaming it) will do after a re-start
    Frank

  • JDeveloper crash while going to design view

    In my mobile browser application I used the design view to create the skeletton of the jspx page.
    It was working, but now when I try to have a design view, it crashed with this error:
    java.lang.NullPointerException
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._service(DesignTimeServletContainerContext.java:801)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext.service(DesignTimeServletContainerContext.java:726)
         at oracle.jdevimpl.webapp.design.DesignTimeWebApp._renderViewDocument(DesignTimeWebApp.java:1388)
         at oracle.jdevimpl.webapp.design.DesignTimeWebApp.access$400(DesignTimeWebApp.java:106)
         at oracle.jdevimpl.webapp.design.DesignTimeWebApp$5.run(DesignTimeWebApp.java:1327)
         at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
         at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
         at java.util.concurrent.FutureTask.run(FutureTask.java:138)
         at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
         at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
         at java.lang.Thread.run(Thread.java:619)Any idea of what happened ? I only add tag parameters in existing elements.

    amseth wrote:
    You can try few of things:
    1. Click on the page go to the structure window.. if there are any error .. try to resolve them and reopen the the page.No impact
    2. Try closing and opening JDeveloper itself.No impact
    3. Atlast close jdeveloper, delete system11.1.1.x.x.x.x folder created by Jdeveloper and then reopen jdeveloper and your page.I deleted the folder. I loose my preferences and it has no impact
    >
    Amit

Maybe you are looking for