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

32 lines
942 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" %>
<netui:html>
<head>
<title><temp:attribute name="title"/></title>
<netui:base />
</head>
<body>
<h1><temp:attribute name="title"/></h1>
<table width="100%"><tr><td>
<table width="100%"><tr><td width="100">'left' Section</td><td><hr /></td></tr></table>
<temp:includeSection name="left"/>
<hr />
</td>
<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.leftVisible"/><br />
Right Section <netui:checkBox dataSource="pageFlow.rightVisible"/><br />
<netui:button type="submit">Submit</netui:button>
</netui:form>
</body>
</netui:html>