18 lines
776 B
Plaintext
18 lines
776 B
Plaintext
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||
|
<%@ taglib uri="http://beehive.apache.org/netui/tags-html-1.0" prefix="netui"%>
|
||
|
<netui:html>
|
||
|
<head>
|
||
|
<title>Control Lifecycle Test 2</title>
|
||
|
</head>
|
||
|
<netui:body>
|
||
|
<h4>Control Lifecycle Test 2</h4>
|
||
|
<p style="color:green">This test will run a control that is found in a shared flow to verify that it
|
||
|
is called during the onCreate, begin action and as a property accessor.
|
||
|
</p>
|
||
|
<table border='1'>
|
||
|
<tr><td>onCreate message</td><td>'${requestScope.createMsg}'</td></tr>
|
||
|
<tr><td>begin message</td><td>'${requestScope.beginMsg}'</td></tr>
|
||
|
<tr><td>property access message</td><td>'${pageFlow.propertyMsg}'</td></tr>
|
||
|
</table>
|
||
|
</netui:body>
|
||
|
</netui:html>
|