JSF design view - visual components are shrinking

Hello,
I have some strange issue while using Design view for JSF and data binding.
Once I drop any data control elements into visual component (panel, etc) my visual components are shrinking to such size, that I cannot distinguish any elements within design view. I cannot use design view since then and have to place all elements base on structure panel.
How to reproduce:
1. Create new JSF page with wizard and accept defaults.
2. Drop one of the panels (panel box, panel group layout) into JSF layout
At this stage my visual elements occupy 100% of design view screen and represent anticipated outcome
3. Drag and drop one of the data control elements (data control panel) into created panels on JSF and create table or form
Immediately after it visual panel where data control was dropped shrinks to approximately 1/4 of the screen and I cannot see neither available space nor created table for my data components.
I figured out, that if I remove created by wizard default <af:messages> tag from the top of my JSF, then design view representation fixes. Not sure if I should remove <af:messages> from all my pages.
Above all looks to me as and bug.
Environment:
-Jdeveloper 11g
-Windows Vista 64b
-Not bundled JDK 6

Hi Shay,
Thank you for response.
1. I tried to play with screen size without result
2. I checked your video post, but this does not resolve my issue
3. This issue occures with all JSF pages and can be reproduced even when following official Oracle step by step tutorials.
4. I figured out, that removing <af:messages> tag resolves the issue ?! It seems this tag is added by default during drag and drop binding.
5. On this link http://drop.io/jdev_001 you can see how design view is changes with and without <af:messages> tag
6. Below is code example from one of the tutorials, that leads to shrinking as well:
7. Once app is deployed and running page get normal view in IE as expected, so it seems to me, it is issue with Jdev design view, probably influenced by my environment, if nobody reported it before.
Thank you for your help.
===========================================================================
<?xml version='1.0' encoding='windows-1252'?>
<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"
xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
<jsp:directive.page contentType="text/html;charset=windows-1252"/>
<f:view>
<af:document id="d1">
<af:messages id="m1"/>
<af:form id="f1">
<af:panelStretchLayout id="psl1">
<f:facet name="center">
<!-- id="af_one_column_stretched" -->
<af:decorativeBox theme="dark" id="db1">
<f:facet name="center">
<af:decorativeBox theme="medium" id="db2">
<f:facet name="center">
<af:panelFormLayout id="pfl1">
<af:inputText value="#{bindings.p_name.inputValue}" label="#{bindings.p_name.hints.label}"
required="#{bindings.p_name.hints.mandatory}" columns="#{bindings.p_name.hints.displayWidth}"
maximumLength="#{bindings.p_name.hints.precision}" shortDesc="#{bindings.p_name.hints.tooltip}" id="it1">
<f:validator binding="#{bindings.p_name.validator}"/>
</af:inputText>
<af:commandButton actionListener="#{bindings.getEmployeesFindByName.execute}" text="getEmployeesFindByName"
disabled="#{!bindings.getEmployeesFindByName.enabled}" id="cb1"/>
<af:panelFormLayout id="pfl2">
<af:inputText value="#{bindings.commissionPct.inputValue}" label="#{bindings.commissionPct.hints.label}"
required="#{bindings.commissionPct.hints.mandatory}" columns="#{bindings.commissionPct.hints.displayWidth}"
maximumLength="#{bindings.commissionPct.hints.precision}" shortDesc="#{bindings.commissionPct.hints.tooltip}"
id="it4">
<f:validator binding="#{bindings.commissionPct.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.commissionPct.format}"/>
</af:inputText>
<af:inputText value="#{bindings.email.inputValue}" label="#{bindings.email.hints.label}"
required="#{bindings.email.hints.mandatory}" columns="#{bindings.email.hints.displayWidth}"
maximumLength="#{bindings.email.hints.precision}" shortDesc="#{bindings.email.hints.tooltip}" id="it7">
<f:validator binding="#{bindings.email.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.employeeId.inputValue}" label="#{bindings.employeeId.hints.label}"
required="#{bindings.employeeId.hints.mandatory}" columns="#{bindings.employeeId.hints.displayWidth}"
maximumLength="#{bindings.employeeId.hints.precision}" shortDesc="#{bindings.employeeId.hints.tooltip}"
id="it6">
<f:validator binding="#{bindings.employeeId.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.employeeId.format}"/>
</af:inputText>
<af:inputText value="#{bindings.firstName.inputValue}" label="#{bindings.firstName.hints.label}"
required="#{bindings.firstName.hints.mandatory}" columns="#{bindings.firstName.hints.displayWidth}"
maximumLength="#{bindings.firstName.hints.precision}" shortDesc="#{bindings.firstName.hints.tooltip}" id="it3">
<f:validator binding="#{bindings.firstName.validator}"/>
</af:inputText>
<af:inputDate value="#{bindings.hireDate.inputValue}" label="#{bindings.hireDate.hints.label}"
required="#{bindings.hireDate.hints.mandatory}" shortDesc="#{bindings.hireDate.hints.tooltip}" id="id1">
<f:validator binding="#{bindings.hireDate.validator}"/>
<af:convertDateTime pattern="#{bindings.hireDate.format}"/>
</af:inputDate>
<af:inputText value="#{bindings.jobId.inputValue}" label="#{bindings.jobId.hints.label}"
required="#{bindings.jobId.hints.mandatory}" columns="#{bindings.jobId.hints.displayWidth}"
maximumLength="#{bindings.jobId.hints.precision}" shortDesc="#{bindings.jobId.hints.tooltip}" id="it2">
<f:validator binding="#{bindings.jobId.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.lastName.inputValue}" label="#{bindings.lastName.hints.label}"
required="#{bindings.lastName.hints.mandatory}" columns="#{bindings.lastName.hints.displayWidth}"
maximumLength="#{bindings.lastName.hints.precision}" shortDesc="#{bindings.lastName.hints.tooltip}" id="it8">
<f:validator binding="#{bindings.lastName.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.phoneNumber.inputValue}" label="#{bindings.phoneNumber.hints.label}"
required="#{bindings.phoneNumber.hints.mandatory}" columns="#{bindings.phoneNumber.hints.displayWidth}"
maximumLength="#{bindings.phoneNumber.hints.precision}" shortDesc="#{bindings.phoneNumber.hints.tooltip}"
id="it9">
<f:validator binding="#{bindings.phoneNumber.validator}"/>
</af:inputText>
<af:inputText value="#{bindings.salary.inputValue}" label="#{bindings.salary.hints.label}"
required="#{bindings.salary.hints.mandatory}" columns="#{bindings.salary.hints.displayWidth}"
maximumLength="#{bindings.salary.hints.precision}" shortDesc="#{bindings.salary.hints.tooltip}" id="it5">
<f:validator binding="#{bindings.salary.validator}"/>
<af:convertNumber groupingUsed="false" pattern="#{bindings.salary.format}"/>
</af:inputText>
<f:facet name="footer">
<af:panelGroupLayout layout="vertical" id="pgl1">
<af:panelGroupLayout layout="horizontal" id="pgl2">
<af:commandButton actionListener="#{bindings.First.execute}" text="First" disabled="#{!bindings.First.enabled}"
partialSubmit="true" id="cb2"/>
<af:commandButton actionListener="#{bindings.Previous.execute}" text="Previous" disabled="#{!bindings.Previous.enabled}"
partialSubmit="true" id="cb3"/>
<af:commandButton actionListener="#{bindings.Next.execute}" text="Next" disabled="#{!bindings.Next.enabled}"
partialSubmit="true" id="cb4"/>
<af:commandButton actionListener="#{bindings.Last.execute}" text="Last" disabled="#{!bindings.Last.enabled}"
partialSubmit="true" id="cb6"/>
</af:panelGroupLayout>
<af:commandButton text="Save" id="cb5" actionListener="#{bindings.mergeDepartments.execute}"
disabled="#{!bindings.mergeDepartments.enabled}" action="browse"/>
</af:panelGroupLayout>
</f:facet>
</af:panelFormLayout>
</af:panelFormLayout>
</f:facet>
</af:decorativeBox>
</f:facet>
</af:decorativeBox>
</f:facet>
</af:panelStretchLayout>
</af:form>
</af:document>
</f:view>
</jsp:root>
Edited by: user555411 on May 2, 2010 2:08 PM

Similar Messages

  • 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.

  • App.Xaml cannot be edited in design view(Visual Studio 2012 for Window Store).

     App.Xaml cannot be edited in design view(Visual Studio 2012 for Window Store).

    The
    Simple Application Walkthrough specifically instructs one to edit App.xaml (because it previously had you inject a defect by changing the name of the file StartupUri property points to). So that is the scenario, or one of them. I assume it is 'valid'
    to rename MainWindow.xaml to whatever you want it to be.
    So there should be some way in the IDE to fix this (short of changing the file name back to match StartupUri). What is it? 
    Like another person here, I just edited it with a text editor and reloaded it into VS. But...

  • JDev 10.0.3.2 - JSF Design View

    in jdeveloper 10.0.3.2 the jsp design view does not work anymore for myfaces and trinidad JSF components.
    it works in jdeveloper 10.0.3.1 with the exception of tomahawk components that rely on the myfaces extension filter.
    after some investigation it turned out that the design time container seems to be tied with ADF faces, event if they are not used in the project (see jdeveloper stacktrace below).
    so i tried the J2EE edition 10.0.3.2 with does not contain ADF at all and the design view works fine with this edtion.
    has anyone similar experiences?- maybe someone from jdeveloper dev team can take a look at this.
    thanks
    robert
    02.02.2007 12:13:46 org.apache.myfaces.trinidad.component.UIXComponentBase _createType
    SCHWERWIEGEND: Could not load type properties
    java.lang.NullPointerException
         at oracle.jdevimpl.webapp.design.DesignTimeClassLoader.loadClass(DesignTimeClassLoader.java:206)
         at org.apache.myfaces.trinidad.component.UIXComponentBase._createType(UIXComponentBase.java:1343)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.<clinit>(UIXComponentBase.java:92)
         at org.apache.myfaces.trinidadinternal.renderkit.core.desktop.DesktopTableRenderer.<init>(DesktopTableRenderer.java:86)
         at org.apache.myfaces.trinidadinternal.renderkit.core.desktop.DesktopRenderKit.<init>(DesktopRenderKit.java:28)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:935)
         at com.sun.faces.config.ConfigureListener.configure(ConfigureListener.java:426)
         at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:348)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext.contextInitialized(DesignTimeServletContainerContext.java:1048)
         at oracle.jdevimpl.webapp.design.DesignTimeThread.invokeContextInitialized(DesignTimeThread.java:682)
         at oracle.jdevimpl.webapp.design.DesignTimeThread.synchronousUpdate(DesignTimeThread.java:137)
         at oracle.jdevimpl.webapp.design.DesignTimeDocumentContext._init(DesignTimeDocumentContext.java:1498)
         at oracle.jdevimpl.webapp.design.DesignTimeDocumentContext.<init>(DesignTimeDocumentContext.java:249)
         at oracle.jdevimpl.webapp.design.DesignTimeEngine.start(DesignTimeEngine.java:243)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.startupDesignTime(JspEditor.java:307)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.rebuildViewDocument(JspEditor.java:208)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.createDocuments(AbstractWebAppEditor.java:1206)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.open(AbstractWebAppEditor.java:393)
         at oracle.jdevimpl.webapp.editor.html.HtmlEditor.open(HtmlEditor.java:172)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.open(JspEditor.java:113)
         at oracle.ideimpl.editor.EditorState.openEditor(EditorState.java:239)
         at oracle.ideimpl.editor.EditorState.createEditor(EditorState.java:147)
         at oracle.ideimpl.editor.EditorState.getOrCreateEditor(EditorState.java:90)
         at oracle.ideimpl.editor.SplitPaneState.canSetEditorStatePos(SplitPaneState.java:231)
         at oracle.ideimpl.editor.SplitPaneState.setCurrentEditorStatePos(SplitPaneState.java:194)
         at oracle.ideimpl.editor.TabGroupState.createSplitPaneState(TabGroupState.java:103)
         at oracle.ideimpl.editor.TabGroup.addTabGroupState(TabGroup.java:275)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1261)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1196)
         at oracle.ideimpl.editor.EditorManagerImpl.openEditor(EditorManagerImpl.java:1131)
         at oracle.ideimpl.editor.EditorManagerImpl.whenOpenEditor(EditorManagerImpl.java:2332)
         at oracle.ideimpl.editor.EditorManagerImpl.handleDefaultAction(EditorManagerImpl.java:1893)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1576)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1913)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1934)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5266)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3968)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1778)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    02.02.2007 12:13:48 org.apache.myfaces.trinidadinternal.webapp.ConfigParser parseConfigFile
    INFO: Trinidad is running in debug mode. Do not use in a production environment. See:/WEB-INF/trinidad-config.xml
    02.02.2007 12:13:48 oracle.adf.view.faces.webapp.AdfFacesFilterHelper verifyFilterIsInstalled
    WARNUNG: The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    02.02.2007 12:13:48 org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl _checkTimestamp
    INFO: Apache Trinidad is running with time-stamp checking enabled. This should not be used in a production environment. See the org.apache.myfaces.trinidad.CHECK_FILE_MODIFICATION property in WEB-INF/web.xml
    02.02.2007 12:13:48 org.apache.myfaces.trinidadinternal.share.xml.TreeBuilder$Handler _logError
    SCHWERWIEGEND: jar:file:/C:/devtools/jdev10132/jlib/adf-faces-impl.jar!/META-INF/agent/capabilities.xml: Parsing error, line 2, column 89:
    org.xml.sax.SAXParseException: Invalid Namespace: http://xmlns.oracle.com/adf/view/faces/agent/capabilities
         at org.apache.myfaces.trinidadinternal.agent.parse.CapabilitiesDocumentParser.startElement(CapabilitiesDocumentParser.java:114)
         at org.apache.myfaces.trinidadinternal.share.xml.TreeBuilder$Handler.startElement(TreeBuilder.java:333)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1288)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:336)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:303)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:205)
         at org.apache.myfaces.trinidadinternal.share.xml.TreeBuilder.parse(TreeBuilder.java:169)
         at org.apache.myfaces.trinidadinternal.agent.parse.CapabilitiesDocumentParser.createInstance(CapabilitiesDocumentParser.java:74)
         at org.apache.myfaces.trinidadinternal.agent.CapabilitiesProvider._getCapabilityDocument(CapabilitiesProvider.java:131)
         at org.apache.myfaces.trinidadinternal.agent.CapabilitiesProvider._getCapabilities(CapabilitiesProvider.java:113)
         at org.apache.myfaces.trinidadinternal.agent.CapabilitiesProvider.getCapabilities(CapabilitiesProvider.java:94)
         at org.apache.myfaces.trinidadinternal.agent.TrinidadAgentImpl._getCapabilityMap(TrinidadAgentImpl.java:268)
         at org.apache.myfaces.trinidadinternal.agent.TrinidadAgentImpl._initialize(TrinidadAgentImpl.java:238)
         at org.apache.myfaces.trinidadinternal.agent.TrinidadAgentImpl.<init>(TrinidadAgentImpl.java:43)
         at org.apache.myfaces.trinidadinternal.context.RequestContextImpl.getAgent(RequestContextImpl.java:595)
         at org.apache.myfaces.trinidadinternal.renderkit.core.CoreRenderKit.chooseRenderKit(CoreRenderKit.java:148)
         at org.apache.myfaces.trinidadinternal.renderkit.CoreRenderKitFactory.getRenderKit(CoreRenderKitFactory.java:53)
         at com.sun.faces.context.FacesContextImpl.getRenderKit(FacesContextImpl.java:252)
         at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$CacheRenderKit.getRenderKit(FacesContextFactoryImpl.java:120)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl._getExtendedRenderKitService(ViewHandlerImpl.java:296)
         at oracle.adfinternal.view.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:137)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:107)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:137)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:214)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletInfo.service(DesignTimeServletInfo.java:274)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher$DesignTimeFilterChain.doFilter(DesignTimeRequestDispatcher.java:380)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:329)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:293)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:216)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:93)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher$DesignTimeFilterChain.doFilter(DesignTimeRequestDispatcher.java:357)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeRequestDispatcher.dispatch(DesignTimeRequestDispatcher.java:232)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext._service(DesignTimeServletContainerContext.java:681)
         at oracle.jdevimpl.webapp.design.support.http.DesignTimeServletContainerContext.service(DesignTimeServletContainerContext.java:626)
         at oracle.jdevimpl.webapp.design.DesignTimeRenderThread.service(DesignTimeRenderThread.java:74)
         at oracle.jdevimpl.webapp.design.DesignTimeEngine.service(DesignTimeEngine.java:348)
         at oracle.jdevimpl.webapp.design.view.DesignTimeViewDocument._serviceJsp(DesignTimeViewDocument.java:851)
         at oracle.jdevimpl.webapp.design.view.DesignTimeViewDocument.rebuildTree(DesignTimeViewDocument.java:137)
         at oracle.jdevimpl.webapp.design.view.DesignTimeFixedViewDocument.rebuildTree(DesignTimeFixedViewDocument.java:154)
         at oracle.jdevimpl.webapp.model.content.dom.view.proxy.ProxyViewDocument.initialize(ProxyViewDocument.java:80)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.rebuildViewDocument(AbstractWebAppEditor.java:686)
         at oracle.jdevimpl.webapp.editor.html.HtmlEditor.rebuildViewDocument(HtmlEditor.java:621)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.rebuildViewDocument(JspEditor.java:209)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.createDocuments(AbstractWebAppEditor.java:1206)
         at oracle.jdevimpl.webapp.editor.AbstractWebAppEditor.open(AbstractWebAppEditor.java:393)
         at oracle.jdevimpl.webapp.editor.html.HtmlEditor.open(HtmlEditor.java:172)
         at oracle.jdevimpl.webapp.editor.jsp.JspEditor.open(JspEditor.java:113)
         at oracle.ideimpl.editor.EditorState.openEditor(EditorState.java:239)
         at oracle.ideimpl.editor.EditorState.createEditor(EditorState.java:147)
         at oracle.ideimpl.editor.EditorState.getOrCreateEditor(EditorState.java:90)
         at oracle.ideimpl.editor.SplitPaneState.canSetEditorStatePos(SplitPaneState.java:231)
         at oracle.ideimpl.editor.SplitPaneState.setCurrentEditorStatePos(SplitPaneState.java:194)
         at oracle.ideimpl.editor.TabGroupState.createSplitPaneState(TabGroupState.java:103)
         at oracle.ideimpl.editor.TabGroup.addTabGroupState(TabGroup.java:275)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1261)
         at oracle.ideimpl.editor.EditorManagerImpl.createEditor(EditorManagerImpl.java:1196)
         at oracle.ideimpl.editor.EditorManagerImpl.openEditor(EditorManagerImpl.java:1131)
         at oracle.ideimpl.editor.EditorManagerImpl.whenOpenEditor(EditorManagerImpl.java:2332)
         at oracle.ideimpl.editor.EditorManagerImpl.handleDefaultAction(EditorManagerImpl.java:1893)
         at oracle.ide.controller.ContextMenu.fireDefaultAction(ContextMenu.java:343)
         at oracle.ideimpl.explorer.BaseTreeExplorer.fireDefaultAction(BaseTreeExplorer.java:1576)
         at oracle.ideimpl.explorer.BaseTreeExplorer.dblClicked(BaseTreeExplorer.java:1913)
         at oracle.ideimpl.explorer.BaseTreeExplorer.mouseReleased(BaseTreeExplorer.java:1934)
         at oracle.ideimpl.explorer.CustomTree.processMouseEvent(CustomTree.java:176)
         at java.awt.Component.processEvent(Component.java:5266)
         at java.awt.Container.processEvent(Container.java:1966)
         at java.awt.Component.dispatchEventImpl(Component.java:3968)
         at java.awt.Container.dispatchEventImpl(Container.java:2024)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4212)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3892)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3822)
         at java.awt.Container.dispatchEventImpl(Container.java:2010)
         at java.awt.Window.dispatchEventImpl(Window.java:1778)
         at java.awt.Component.dispatchEvent(Component.java:3803)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    02.02.2007 12:13:51 org.apache.myfaces.trinidad.webapp.ResourceServlet _initDebug                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 

    Hi Timo, thanks for the quick reply!
    I'm trying to do this for a few EO/VO pairs so I'll give a generic example.
    I have an EO made up of the following fields (id, accessstring) and a corresponding VO with (id, accessstring, descr) fields. The descr field is the transient attribute. I'd like to set the accessstring value to the descr value.
    What I tried, and forgive the simplicity of my first shot, was the following override in the VOImpl class:
    public void postChanges(TransactionEvent transactionEvent) {
    Row currentRow = getCurrentRow();
    if( currentRow != null ){
    currentRow.setAttribute("accessstring",currentRow.getAttribute("descr"));
    super.postChanges(transactionEvent);
    This works, but executes far too often and I get the JBO error from the original post. I'm not aware of anything at the VOImpl level to test state like I could if I were at the EOImpl level (e.g. the prepareforDML method). So either I'm going about this completely the wrong way or there's something I'm missing in the postChanges to have this code execute less often.

  • JSF Design view broken, showing tags as blocks instead of preview

    I'm using jDev Build JDEVADF_11.1.2.3.0_GENERIC_120914.0223.6276.1
    but this has happened to me several times before with previous versions of jDev.
    All of the sudden after restarting jDev the design view for all my jsf pages look broken, showing only tag blocks, and not the design view it was showing previously. Why is this? what happened?
    The only fix I found on this forum was to remove the system directory (should be somewhere like: C:\Documents and Settings\yourUser\Application Data\JDeveloper\system11.1.1.3.37.56.60 ) and let jDev create a new one. But then I have to reconfigure everything again, which can be frustrating.
    Can anyone explain what's going on here, and if there's a better way to fix my jDev when this happens?
    Edited by: tnology on 14-Nov-2012 13:37

    Thanks, so these are the messages I am getting in Design view, anyone know what it means? :
    Nov 14, 2012 3:31:52 PM oracle.security.jps.util.JpsUtil disableAudit
    INFO: JpsUtil: isAuditDisabled set to true
    Nov 14, 2012 3:32:00 PM oracle.jdevimpl.webapp.faces.config.modelimpl.FacesConfigHandler setIsMetadataComplete
    INFO: jar:file:/C:/Oracle/Middleware23/jdeveloper/jlib/bundleresolver.jar!/META-INF/faces-config.xml metadata-complete undefined (false)
    Nov 14, 2012 3:32:02 PM oracle.bali.xml.share.WeakListenerManager addListener
    WARNING: Tried to add listener that was already attached: listener=oracle.jdevimpl.webapp.grammar.DelegatingGrammarProvider$IdenticalGrammarEventPercolator@185d004source=oracle.jdevimpl.webapp.jsp.libraries.JspLibraryMetadataGrammarProvider@35b0c9
    Nov 14, 2012 3:32:04 PM javax.faces.FactoryFinder$FactoryManager getFactory
    SEVERE: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory. Attempting to find backup.
    WARNING: Unable to initialize <servlet> Faces Servlet. Check project libraries configuration.
    java.lang.IllegalStateException: Could not find backup for factory javax.faces.context.FacesContextFactory.
         at javax.faces.FactoryFinder$FactoryManager.getFactory(FactoryFinder.java:996)
         at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:331)
         at javax.faces.webapp.FacesServlet.init(FacesServlet.java:219)
    Nov 14, 2012 3:32:06 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.
    Nov 14, 2012 3:32:06 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.
    Nov 14, 2012 3:32:24 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.
    Nov 14, 2012 3:32:24 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. cvc-complex-type.2.4.b: The content of element 'propertySets' is not complete. One of '{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd":propertySet}' is expected. Location: unavailable.
    Nov 14, 2012 3:32:24 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.
    Nov 14, 2012 3:32:24 PM oracle.security.jps.internal.common.util.StrictValidationEventHandler handleEvent
    WARNING: Failed to validate the xml content. cvc-complex-type.2.4.b: The content of element 'propertySets' is not complete. One of '{"http://xmlns.oracle.com/oracleas/schema/11/jps-config-11_1.xsd":propertySet}' is expected. Location: unavailable.

  • JDev 11g JSF design view problem

    Hi everyone
    I have a problem with JDev 11g
    whenever I'm trying to edit a jsf page the design view only shows the tag names like the image below
    [http://www.imgplace.com/viewimg134/241/9511g.png]
    this is only happens when editing jsf pages and everything is ok while editing jsp
    so why is this happening and how to fix it?
    thanks
    Edited by: user13266332 on Jul 23, 2010 10:09 PM

    Thanks for the link Shay Shmeltzer.
    but unfortunately that didn't help much
    i tried running jdev.exe with the console open and also enabled "Show Design Time Messages in Log" but i didn't get any error message
    also tried adding different libraries to project but the design view still doesn't render the tags.
    any other solution?

  • In Design View horizontal pages are cut off to portrait dimensions. How to fix this?

    I am trying to  edit a form in livecycle designers "Design View" mode. Some pages are horizontal but they are displayed all in portrait mode, cutting off the right side of these horizontal pages so i can not see or edit them. Is there some way to fix it so I can see all of the page on these hoirzontal pages?

    If you want fast and professional, spend the money for PVII's Pop-Menu Magic3.  You won't regret the investment.
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    As it stands right now, your responsive-nav.css file is 404 not found on server.  Personally, I wouldn't use Spry for anything.  But that's your cross to bear.
    Scroll down to the various media break points and add the code in bold red
    /* Mobile Layout: 480px and below. */
    .gridContainer {
        width: 100%;
    ul.MenuBarHorizontal {display:none}
    /* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
    @media only screen and (min-width: 481px) {
    .gridContainer {
    ul.MenuBarHorizontal {display:block}
    /* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
    @media only screen and (min-width: 769px) {
    .gridContainer {
    ul.MenuBarHorizontal {display:block}
    Nancy O.

  • JSF Design View broken? Fallback Rendering, "Render Kit" not found

    Hi,
    I just wanted to toy around with JDeveloper 11g TP3, created a new project, added technology scope JSF (+ JSP/Servlets, etc.) then the tag-library ADF Faces Component 11-ji3.
    Then I created a data control from a POJO and wanted to visualize this within a JSF page. So I created one (via faces-config visual editor), dragged the appropriate getter-method to the page in the up-to-this-point working WYSIWYG editor, selected ADF-read-only-form and suddenly found myself in the JSF "alternate rendering" (a view like in an hierachical XML editor). I enabled "design time messages in log" to see what the problem was.
    Stopping/Starting JDeveloper or removing tag libraries like suggested in other threads did not work. I was unable to reactivate the wysiwyg editor for this page or any new JSF page in this application, always the "alternate rendering".
    Log said "oracle.sql.OraData" was missing, so I added ojdbc6.jar to the project classpath. Didn't help, no wysiwyg editor, log now says:
    --- snip ---
    18.02.2008 14:12:37 oracle.adfinternal.view.faces.lifecycle.LifecycleImpl _isPostback
    WARNUNG: Render Kit konnte nicht gefunden werden
    WARNING: A problem was encountered executing the page. Using fallback rendering.
    java.lang.NullPointerException
         at org.apache.myfaces.trinidad.util.Service.getService(Service.java:82)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl._getExtendedRenderKitService(ViewHandlerImpl.java:333)
         at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:154)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:633)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:244)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
    --- end ---
    I have this error even for newly created (ie blank/HelloWorld) JSF pages in my application. I started adding some libraries, but nothing helped. How do I reactivate the wysiwyg editor?
    Thanks!

    Frank,
    thanks for the reply. I will try what you suggested, but the trinidad-config.xml is actually not missing in my project, although it does not include a render kit definition.
    As my first step with 11g I also tried one of the tutorials (http://www.oracle.com/technology/obe/obe11jdev/11/ejb/ejb.html) and there the wysiwyg was working nicely the whole time.
    In both cases (my project == not working wysiwyg editor, tutorial == nicely working wysiwyg editor) the content of the trinidad-config.xml is the same:
    --- trinidad-config.xml ---
    <?xml version="1.0" encoding="windows-1252"?>
    <trinidad-config xmlns="http://myfaces.apache.org/trinidad/config">
    <skin-family>blafplus-rich</skin-family>
    </trinidad-config>
    --- end-of-file ---
    Rgds
    Axel

  • Painting with JSF Designer

    The JSF Designer seems to continually hang when opening in Design mode (becomes completely unresponsive). No errors are reported, and JDeveloper just quits responding. I am using a custom view-handler in my application which works fine at run time.
    Is this a known issue? Is there a way to make the JSF pages open in Source view instead of design view by default? This may be enough of a work around for now.

    Bobby,
    I've had no issues whatsoever with the JSF Design view. However, you can set it to use the source view by default. In Tools -> Preferences, select the "File Types" node on the left, then click the "Default Editors" tab. You can then change the default editor for JSP Source file type
    Hope this helps,
    John

  • Design View Nonworkable - Fine in Browsers and Validation

    Hi!
    I have year old sites and new sites using CSS and server side
    includes (both php and asp) that are nonworkable in design view in
    Dreamweaver CS3. Sites were fine in Macromedia 8 but not now. My
    very old sites are fine - they are straight HTML sites.
    I have read several past posts on this problem and ruled out
    many of the solutions for my case. My pages are clean in WC3
    validation (meaning no errors) - since this is what Adobe
    Dreamweaver support was concerned about when I took out an support
    incident with them. The sites display fine in 6 browsers, but not
    in DW CS3 now that I upgraded. This makes no sense.
    I see some answers that CS3 is not as tolerant as before of
    bad coding. This is not the issue, it is validated and displaying
    across browsers fine.
    I and my staff are crippled working on these sites now that
    we have all upgraded to CS3 with the way they are displaying.
    Here are some pages that I am having problems with:
    http://www.scandpg.org/meeting_event.php
    http://www.eatrightny.org/about/about_site.php
    http://www.eatrightmissouri.org/jobs/index.asp
    (site workign on now, not live)
    http://www.hada.com/about/board.asp
    I have found if I uncheck server side includes in preferences
    for invisible elements I can work on the content better, but this
    is a workaround but does not resolve the fact that DW is not
    displaying coding in view correctly and still leaves some issues
    when developing a site.
    Thanks for your help in shedding light on this as I may be
    off. My conclusions are drawn from a support incident/ticket with
    Adobe on this very same thing, looking at the DW forum postings
    over the last six months on this and my own recent experiences.
    Thanks in advance for your help.
    Healthy regards,
    Teresa

    If you want to work in DW, then you must adopt this approach
    to the use of
    server-side includes:
    > The parent file is the ONLY one that can contain
    <html>, <head>, or <body>
    > tags.
    > The include files cannot contain those tags.
    > The final assembled page must therefore only contain one
    instance of each
    > with its associated closing tag.
    That seems to be your largest problem.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "terepan" <[email protected]> wrote in
    message
    news:[email protected]...
    > Thanks!
    >
    > I agree I have HTML errors on some, but did not think
    they would cause
    > pages
    > to be as extremely distorted in design view as they are
    coming up in DW
    > CS3 now.
    >
    > I appreciate you looking at the pages. This may help you
    in helping me. I
    > now
    > took out all the HTML on this page except the body, head
    and title tags.
    > The
    > red pepper image in DW CS3 displays in the middle of the
    page. I can not
    > add
    > any content in design view in the main content area of
    this page.
    >
    >
    http://www.eatrightmissouri.org/jobs/index.asp
    >
    > I do appreciate the idea of having a web development
    tool that will force
    > me
    > into industry standards.
    >
    > My concern is this is not true. I hope there is an easy
    fix. It is not
    > desirable to take out the server side includes when
    entering content.
    > Part of
    > the expertise in putting together effective pages is
    more than coding. It
    > is
    > bringing the content to life and getting the intended
    message across to
    > target
    > markets. This is difficult when you are designing and
    can not even see
    > the
    > entire page when making decisions on how to display the
    information.
    >
    > I wouldl like it if it was as simple as my HTML errors,
    but looking at my
    > full experience with ths display issue in design view,
    this does not
    > explain
    > it all.
    >
    > Thanks for looking at the pages. If you could look at
    the one I took out
    > most
    > all the HTML and I will cross my fingers there is a
    simple fix. I am in
    > the
    > process of getting pages in this site ready to turn over
    to my staff and
    > am
    > perplexed what to do.
    >
    > Healthy regards,
    >
    > Teresa
    >
    >

  • DW8:  image won't display in Design View

    Folks:
    DW8 on MacOS 10.4.8 (fully updated) on Intel iMac.
    What would keep an image from displaying in DW Design View?
    What are the causes of the grey box with the superimposed "X"? Is
    there any diagnostic output that might help? Is the grey box and
    "X" substituted by DW8 for an invalid or un-drawable graphic, or is
    this done by the OS?
    The problem:
    I've got a 1912 x 1481 graphic, a geographic map, in AI that
    I'm trying to use as an ordinary web image, but DW won't display it
    in Design View. Instead all I see is a big grey box and "X". For
    test purposes, I'm starting from a new "Basic" HTML web page and
    all I'm doing is inserting this one image. I need to get this
    working so I can draw hotspots on this graphic to make it
    "clickable" .
    Here's what I've tried:
    o Triple-checking that the inserted image reference is
    correct. Yes, the image file is correctly linked. With the image
    selected, the inspector shows a tiny but recognizable miniature of
    the expected image. Further, when the page and the image are
    uploaded to the web server and I look at it via a browser, the
    expected image is _always correctly displayed.
    o Exporting the graphic "for the web" from AI as both a GIF
    and a medium-quality JPG. Neither of these are displayed in Design
    View; both are served up correctly after being uploaded
    o I found a larger JPG on a different site I'm managing. This
    always displays as expected in both DW Design View and when served
    up. I substituted the failing map JPG image. The result: A grey
    box.
    o Checking the map images: The JPG and GIF versions seem to
    be visible in all environments (image readers, browsers, etc.) I've
    checked _except_ DW8 Design View.
    o Checked on another system. I made the failing image
    available to a very helpful ACE, who performed a similar
    experiment. It worked fine for him. I used his exact HTML and
    directory structure -- and it failed for me. Grey box with "X".
    It seems to me that I've checked most of the obvious
    possibilities. Now it is time to check the less obvious ones.
    Suggestions are very welcome!
    Thanks,
    Henry

    Randy:
    Thanks for your response.
    This is a virtual memory system, so -- in theory-- it should
    accommodate anything that will fit on the hard drive, more or less,
    if I'm wiling to wait the hours (days?) it will take to swap on and
    off the disk. That assumes DW8 takes advantage of the capability.
    It may not.
    "Larger"? The JPG image I compared to is 1692 x 2160 pixels,
    but weighs slightly less, 289K bytes. I'm losing track of all my
    test images that fail, but a representative one is 1912 x 1481
    pixels and weighs 332Kb on the disk. "Roughly comparable" might be
    a better description. The point is still reasonable: DW8 does
    handle images of this size on my system.
    One issue that occurred to me recently is that I may have
    caused some grief by monkeying with the "Save for web" settings at
    the Illy export. Perhaps I asked for some configuration that's
    normal for Illy to export --or it would have warned me, I hope--
    but too strange for DW to grok. DW should complain more
    informatively than painting a gray box and "X" when that happens, I
    would think.
    Henry

  • Design View Fails To Render Some Pages Correctly.

    Dreamweaver appears to have problems rendering some CSS in
    Design View. Here
    are links to an HTML page and a style sheet, both of which
    appear to be
    valid, but the page "breaks" in the Design View of both DW8
    and DW CS3:
    http://wspitt.com/csstest/index.html
    http://wspitt.com/csstest/default.css

    > Maybe not but its wrong to mislead them into believeing
    if their page
    > validates it will render correctly.
    Who here has EVER said that? Nobody. This is your spin on our
    comments.
    If the page is not rendering correctly, it is a good practice
    to start with
    validation. If there are structural errors in the page, that
    will find
    them. You can then eliminate such considerations from your
    troubleshooting
    efforts.
    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
    ==================
    "Osgood" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray *ACE* wrote:
    >
    >>>Murray thats nonsense.
    >>
    >>
    >> You are distorting my statements to your purpose.
    >
    > Not really. I'm just providing a view from a different
    perspective than
    > yours.
    >
    >> A page that doesn't validate will likely not display
    properly in DW. You
    >> know that.
    >
    > Thats not my opinion. A badly coded page is more likely
    not to display
    > correctly. I don't consider one that fails validation on
    a few minor
    > points badly coded. One that does validate can display
    the same issues as
    > one that doesnt, if not worse.
    >
    > You know what validates and what doesn't.
    >
    > Sure and that to me is where it ends. If people feel the
    need to validate
    > then so be it but don't consider it the be-all and
    end-all solution to
    > possible display issues cross-browser.
    >
    > You do not make the
    >> kind of structural errors that will cause a page not
    to validate.
    >
    > To me thats whats its all about making sure the
    structure is correct but I
    > cant see the correlation with also wanting to make
    anything valid.
    >
    >> Most of the people who post here with display
    problems are not that
    >> savvy.
    >
    > Maybe not but its wrong to mislead them into believeing
    if their page
    > validates it will render correctly.
    >

  • Includes Not Displaying in Design View

    I have an html page whose content is kept mostly in include
    pages. In the DW8 Design View, these includes are not displaying.
    For example, a page that should have a height of 600px only
    displays the masthead and footer; it's as if the includes do not
    even exist. However, when I test it in the browsers, all is well.
    Is there a Preference Setting or plug-in that I am missing?
    Any suggestions are welcome.
    Thank you in advance for your time and consideration.

    > For example, a page that
    > should have a height of 600px only displays the masthead
    and footer; it's
    > as if
    > the includes do not even exist.
    Can you post a link to this page? Can you also tell us where
    the includes
    are (or post the raw code here)?
    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
    ==================
    "The WereMike" <[email protected]> wrote in
    message
    news:ep55lh$pkj$[email protected]..
    >I have an html page whose content is kept mostly in
    include pages. In the
    >DW8
    > Design View, these includes are not displaying. For
    example, a page that
    > should have a height of 600px only displays the masthead
    and footer; it's
    > as if
    > the includes do not even exist. However, when I test it
    in the browsers,
    > all
    > is well.
    >
    > Is there a Preference Setting or plug-in that I am
    missing? Any
    > suggestions
    > are welcome.
    >
    > Thank you in advance for your time and consideration.
    >

  • PhpBB2 source code does not show in design view /CS3

    I would like to customize a php bulletin board.
    The default bulletin board page does not show in design view.
    Is there a way to do it , such that php code can be written
    by DreamWeaver via the design view ?

    > The files I am trying to edit, or that is think I should
    be trying to edit ,
    > are
    > index.php , and in the includes file template.php
    If I am sorting this out correctly, which i am _not_ sure of
    at the moment:
    those aren't .tpl files.
    they are .php files, and are part of the forum. They aren't
    displaying in
    design view because they are all php.
    You need to find and edit the template files.
    In previous link given:
    http://www.phpbb.com/community/viewtopic.php?t=10764
    <q>
    So where do I find these great 'templates'?
    Look in /templates/subSilver (thoroughout the FAQ I will be
    using subSilver,
    the default template. If you are using a different template
    then change the
    folder you look in accordingly). You will see a collection of
    files there.
    The templates are the ones with the file extension '.tpl' The
    majority of
    files in that folder are .tpl files. </q>
    strongly suggest you make a backup copy of anything you try
    to touch.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Design view no styling

    Hi
    Recently, and I do not think it is specific to an update, Dreamweaver 2014.1.1 build 6981 is opening files and in the design view all styles are not rendering. Do all my fonts are default face and black and links blue. I work in e-mail marketing and my font styles are mainly in-line css. I want to see the proper font-face, color and link styling.
    After I do some editing all of a sudden the styling sometimes pops in place. When I preview in browser all looks fine but this is annoying me. It feels like a step backwards. Is there some setting involved for design view to be an actual design view?
    I am in Windows 7 service pack1 with an i7 processor and12 GB ram so it isn't a processing issue I am sure.
    Thanks
    RL

    That's usually a sign of an error somewhere in your code that DW is having issue with. The newer versions seem to be a bit more picky about code issues. Run your pages through the validators at...
    HTML: http://validator.w3.org/
    CSS: http://jigsaw.w3.org/css-validator/
    And make sure you don't have any major structural errors like missing end tags in your html or missing semi-colons or curly brackets in your css.

Maybe you are looking for

  • 10.1 running in Windows 7 64 bit NOT smooth

    Im running Windows 7 Ultimate under Boot Camp on a MacBook Pro. Ive been running the 10.1 Release Candidate in Safari, FireFox and IE and it is extremely choppy compared to 10.0. When I view http://www.lucid.it in 10.1 RC performance is very poor com

  • Export preparation details for Het. Sysytem copy

    I used to work with a certified migration specialist migrating 4.6C from Window/Oracle to AS/400 about 6 years ago. I remember there was a list of preparation steps to be taken on the source SID to check for readiness before DBEXPORT was done. I did

  • Cane Be Changed with Query Navigation

    Can U tell me how this function works??I tried many times but it behaves like a normal variable without this function.... Help.sap says "you can also access values that are not found in the value area of the variable entry"....How can I access other

  • Need help..anyone GUI Interfaces

    http://forum.java.sun.com/thread.jsp?forum=31&thread=472147&tstart=0&trange=15 Can someone please help me with this program..I'm new to java and I don't understand GUI's. I read everything inside and out in my text book and still don't get how to con

  • InDesign malfunction.

    I have had problems with InDesign for several months and the situation is not getting any better, in fact, it is getting worse. I was advised to do a clean install recently on my Macbook pro - which I did. Unfortunately, this action has not helped th