Index.jsp Sample
This topic inludes the source code for the Index.jsp Sample.
Sample Location
This sample is located in the following directory in your WebLogic Workshop installation:
BEA_HOME/weblogic81/samples/workshop/SamplesApp/WebApp/tagSamples/
Sample Source Code
01 <%@ page language="java" contentType="text/html;charset=UTF-8"%>
02 <%@ taglib uri="netui-tags-databinding.tld" prefix="netui-data"%>
03 <%@ taglib uri="netui-tags-html.tld" prefix="netui"%>
04 <%@ taglib uri="netui-tags-template.tld" prefix="netui-template"%>
05 <netui:base />
06 <netui:html>
07 <head>
08 <title>
09 Web Application Samples: Tag Samples
10 </title>
11 <link href="../resources/css/style.css" type="text/css" rel="stylesheet"/>
12 </head>
13 <body>
14 <jsp:include page="../resources/jsp/header.jsp"/>
15 <h3>Page Flow Samples: Tag Samples</h3>
16 <p>These samples show how to use individual <netui...> tags.</p>
17 <blockquote>
18 <h4><netui:...> Tags</h4>
19 <p><netui:anchor action="toAnchor"><netui:anchor> Tag</netui:anchor>
20 <p><netui:anchor action="toBindingUpdateErrors"><netui:bindingUpdateErrors> Tag</netui:anchor>
21 <p><netui:anchor action="toButton"><netui:button> Tag</netui:anchor>
22 <p><netui:anchor action="toCheckBox"><netui:checkBox> Tag</netui:anchor>
23 <p><netui:anchor action="toCheckBoxOption"><netui:checkBoxOption> Tag</netui:anchor>
24 <p><netui:anchor action="toContent"><netui:content> Tag</netui:anchor>
25 <p><netui:anchor action="toExceptions"><netui:exceptions> Tag</netui:anchor>
26 <p><netui:anchor action="toForm"><netui:form> tag</netui:anchor>
27 <p><netui:anchor action="toFormatTags"><netui:formatDate>,
28 <netui:formatNumber>,
29 and <netui:formatString> Tags</netui:anchor>
30 <p><netui:anchor action="toImageAnchor"><netui:imageAnchor> Tag</netui:anchor>
31 <p><netui:anchor action="toImageButton"><netui:imageButton> Tag</netui:anchor>
32 <p><netui:anchor action="toLabel"><netui:label> Tag</netui:anchor>
33 <p><netui:anchor action="toParameter"><netui:parameter> Tag</netui:anchor>
34 <p><netui:anchor action="toParameterMap"><netui:parameterMap> Tag</netui:anchor>
35 <p><netui:anchor action="toRadioButton"><netui:radioButtonGroup> and <netui:radioButtonOption> Tags</netui:anchor>
36 <p><netui:anchor action="toRewrite"><netui:rewriteName> and <netui:rewriteURL> Tags</netui:anchor>
37 <p><netui:anchor action="toSelect"><netui:select> and <netui:selectOptions> Tags</netui:anchor>
38 <p><netui:anchor action="toTextArea"><netui:textArea> Tag</netui:anchor>
39 <p><netui:anchor action="toTextBox"><netui:textBox> Tag</netui:anchor>
40 <p><netui:anchor action="toTree"><netui:tree> Tag</netui:anchor>
41 <p><netui:anchor action="toDynamicTree"><netui:tree> Tag: Dynamic Tree Sample</netui:anchor>
42 <hr>
43 <h4><netui-data:...> Tags</h4>
44 <p><netui:anchor action="toControl"><netui-data:callControl> Tag</netui:anchor>
45 <p><netui:anchor action="toCallMethod"><netui-data:callMethod> Tag</netui:anchor>
46 <p><netui:anchor action="toCallPageFlow"><netui-data:callPageFlow> Tag</netui:anchor>
47 <p><netui:anchor action="toCellRepeater"><netui-data:cellRepeater> Tag</netui:anchor>
48 <p><netui:anchor action="toChoice"><netui-data:choice> Tag</netui:anchor>
49 <p><netui:anchor action="toDeclarePageInput"><netui-data:declarePageInput> Tag</netui:anchor>
50 <p><netui:anchor action="toGetData"><netui-data:getData> Tag</netui:anchor>
51 <p><netui:anchor action="toGrid"><netui-data:grid> and related Tags</netui:anchor>
52 <p><netui:anchor action="toMessage"><netui-data:message> Tag</netui:anchor>
53 <p><netui:anchor action="toPad"><netui-data:pad> Tag</netui:anchor>
54 <p><netui:anchor action="toRepeater"><netui-data:repeater> and related Tags</netui:anchor>
55 <hr>
56 <h4><netui-template:...> Tags</h4>
57 <p><netui:anchor action="toTemplate"><netui-template:template> and related Tags</netui:anchor>
58 <hr>
59 <h4>Custom Tags</h4>
60 <p><netui:anchor action="toCustomTags">Custom Tags Sample</netui:anchor>
61 </blockquote>
62 <hr>
63 <p><netui:anchor action="toPageFlowSamples">Back to Page Flow Samples Home</netui:anchor>
64 </body>
65 </netui:html>
|