- This topic has 5 replies, 2 voices, and was last updated 19 years, 2 months ago by paulspencer.
-
AuthorPosts
-
paulspencerMemberME 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
paulspencerMemberAlso it appears the <h:panelGrid> is not displayed as a table. Their is no alignment of the columns.
Paul Spencer
GregMemberPaul,
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.
paulspencerMemberGreg,
Is the “priority list” visble via the web?On a related noted, is the bug list visible via the web?
Paul Spencer
GregMemberBoth 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.
paulspencerMemberGreg,
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
-
AuthorPosts