42 lines
1.8 KiB
Plaintext
42 lines
1.8 KiB
Plaintext
<%@ page language="java" contentType="text/html;charset=UTF-8"%>
|
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-databinding-1.0" prefix="netui-data"%>
|
|
<%@ 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="netui-template"%>
|
|
<netui:html>
|
|
<head>
|
|
<title>
|
|
Basic DivPanel
|
|
</title>
|
|
<netui:scriptHeader />
|
|
</head>
|
|
<netui:body>
|
|
<h4>Basic DivPanel</h4>
|
|
<netui:divPanel tagId="divPanel">
|
|
<netui-template:section name="page1">
|
|
<table><tr>
|
|
<td colspan="2" align="center">Page 1</td>
|
|
</tr><tr>
|
|
<td width="100pt"> </td>
|
|
<td width="100pt"><netui:anchor clientAction='divPanel.showPage("page2");'>Next</netui:anchor></td>
|
|
</tr></table>
|
|
</netui-template:section>
|
|
<netui-template:section name="page2">
|
|
<table><tr>
|
|
<td colspan="2" align="center">Page 2</td>
|
|
</tr><tr>
|
|
<td width="100pt"><netui:anchor clientAction='divPanel.showPage("page1");'>Previous</netui:anchor></td>
|
|
<td width="100pt"><netui:anchor clientAction='divPanel.showPage("page3");'>Next</netui:anchor></td>
|
|
</tr></table>
|
|
</netui-template:section>
|
|
<netui-template:section name="page3">
|
|
<table><tr>
|
|
<td colspan="2" align="center">Page 3</td>
|
|
</tr><tr>
|
|
<td width="100pt"><netui:anchor clientAction='divPanel.showPage("page2");'>Previous</netui:anchor></td>
|
|
<td width="100pt"> </td>
|
|
</tr></table>
|
|
</netui-template:section>
|
|
</netui:divPanel>
|
|
</netui:body>
|
|
</netui:html>
|