ME 4.0 GA
The Design and Preview modes of JSP Designer do not display the value of <h:outputLabel>. In the case of the Design mode, only a thin green box is displayed.
<%@ 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