diff --git a/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java b/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java index 9023b4063..100abeeaa 100644 --- a/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java +++ b/plugins/dojo/src/main/java/org/apache/struts2/dojo/components/TabbedPanel.java @@ -45,12 +45,8 @@ import com.opensymphony.xwork2.util.ValueStack; * *
Examples * - * - * The following is an example of a tabbedpanel and panel tag utilizing local and remote content. - * * - * - *+ * * <s:tabbedpanel id="test" > * <s:div id="one" label="one" theme="ajax" labelposition="top" > * This is the first pane<br/> @@ -63,12 +59,9 @@ import com.opensymphony.xwork2.util.ValueStack; * This is the remote tab * </s:div> * </s:tabbedpanel> - *- * + * * * - *
Use notify topics to prevent a tab from being selected
- *
* <script type="text/javascript">
* dojo.event.topic.subscribe("/beforeSelect", function(event, tab, tabContainer){
* event.cancel = true;
@@ -83,7 +76,6 @@ import com.opensymphony.xwork2.util.ValueStack;
* Another tab
* </s:div>
* </s:tabbedpanel>
- *
*
*/
@StrutsTag(name="tabbedpanel", tldTagClass="org.apache.struts2.dojo.views.jsp.ui.TabbedPanelTag", description="Render a tabbedPanel widget.")