facebook

JSP Designer does not honor columns attribute in

  1. MyEclipse IDE
  2.  > 
  3. Java EE Development (EJB, JSP, Struts, XDoclet, etc.)
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #236602 Reply

    paulspencer
    Member

    ME 4.0 GA

    The Design and Preview modes of JSP Designer do not honor the “columns” attribute of <h:panelGrid>. Based on the following code, I expect 2 rows of 3 columns. The JSP Designer will display as many cells on a row as the width of the window will permit.

    
    <%@ page language="java" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    
    <HTML>
    <HEAD></HEAD>
    <BODY>
    <f:view>
        <h:form>
            <h:panelGrid columns="3">
                 <!-- Row 1 -->
                <h:outputLabel for="field11" value="Field 1.1" />
                <h:inputText id="field11" value="#{queryProperty.field11}" />
                <h:message for="field11" errorStyle="color:red;" />
    
                 <!-- Row 2 -->
                <h:outputLabel for="field21" value="Field 2.1" />
                <h:inputText id="field21" value="#{queryProperty.field21}" />
                <h:message for="field21" errorStyle="color:red;" />
    
            </h:panelGrid>
        </h:form>
    </f:view>
    </BODY>
    </HTML>
    

    Paul Spencer

    #236604 Reply

    paulspencer
    Member

    Also it appears the <h:panelGrid> is not displayed as a table. Their is no alignment of the columns.

    Paul Spencer

    #236670 Reply

    Greg
    Member

    Paul,

    The panelGrid, panelGroup, and dataTable JSF components do not have full rendering support in the 4.0 release. Improving the rendering fo these components are high on the priority list for the next release. Sorry for the inconvenience.

    #236678 Reply

    paulspencer
    Member

    Greg,
    Is the “priority list” visble via the web?

    On a related noted, is the bug list visible via the web?

    Paul Spencer

    #236687 Reply

    Greg
    Member

    Both of those lists are kept internal, mainly because we use those lists to track other things besides “bugs”. Many times if a user posts a bug report to the forums, when we fix that bug we will come back and annotate that forum thread saying it should be fixed for a upcoming release.

    #236696 Reply

    paulspencer
    Member

    Greg,
    Having the lists visble, even if it is limited to members, will mimimize the user fustration. Once I think I have found an ME bug:
    I search forums
    Create a simple test case to document the bug
    Post a message to the forum.
    Followup on the message.

    As you can see, this involve spending time away from the project. Although I do not mind doing this for new bugs, is it aggravating for known bugs.

    As a suggestion, post bugs/issues on a read only forum. The post would be limited to the description and ID.

    Paul Spencer

Viewing 6 posts - 1 through 6 (of 6 total)
Reply To: JSP Designer does not honor columns attribute in

You must be logged in to post in the forum log in