Use Dojo plugin tags

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@542388 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Musachy Barroso
2007-05-29 02:44:08 +00:00
parent 2da24979d2
commit 854680269e
+6 -6
View File
@@ -10,14 +10,14 @@
<h1>View Sources</h1>
<sx:tabbedpanel id="test">
<s:div id="one" label="Page" theme="ajax">
<sx:div id="one" label="Page" >
<h3>${empty page ? "Unknown page" : page}</h3>
<pre>
<s:iterator value="pageLines" status="row">
${row.count}: <s:property/></s:iterator>
</pre>
</s:div>
<s:div id="two" label="Configuration" theme="ajax" >
</sx:div>
<sx:div id="two" label="Configuration" >
<h3>${empty config ? "Unknown configuration" : config}</h3>
<pre>
@@ -25,14 +25,14 @@ ${row.count}: <s:property/></s:iterator>
<span style="background-color:yellow">${configLine - padding + row.count - 1}: <s:property/></span></s:if><s:else>
${configLine - padding + row.count - 1}: <s:property/></s:else></s:iterator>
</pre>
</s:div>
<s:div id="three" label="Java Action" theme="ajax">
</sx:div>
<sx:div id="three" label="Java Action">
<h3>${empty className ? "Unknown or unavailable Action class" : className}</h3>
<pre>
<s:iterator value="classLines" status="row">
${row.count}: <s:property/></s:iterator>
</pre>
</s:div>
</sx:div>
</sx:tabbedpanel>