beehive/netui/test/webapps/drt/web/template/visibleError/Template.jsp

35 lines
980 B
Plaintext

<%@ page language="java"%>
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui" %>
<%@ taglib uri="http://beehive.apache.org/netui/tags-template-1.0" prefix="temp" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<netui:html>
<head>
<title><temp:attribute name="title"/></title>
<netui:base />
</head>
<netui:body>
<h1><temp:attribute name="title"/></h1>
<table width="100%"><tr>
<c:if test="${pageFlow.foo}">
<td>
<table width="100%"><tr><td width="100">'left' Section</td><td><hr /></td></tr></table>
<temp:includeSection name="left"/>
<hr />
</td>
</c:if>
<td>
<table width="100%"><tr><td width="100">'right' Section</td><td><hr /></td></tr></table>
<temp:includeSection name="right"/>
<hr />
</td>
</tr>
</table>
<hr />
<h4>Control Stuff</h4>
<netui:form action="postback">
Left Section <netui:checkBox dataSource="pageFlow.visible"/><br />
<netui:button type="submit">Submit</netui:button>
</netui:form>
</netui:body>
</netui:html>