TabPanel example

This is Home Tab

TabPanel Example

This is About Tab

TabPanel Example

This is Info Tab

TabPanel Example

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>Panels - Tab Panel</title>
    </head>
    <body>
        <div style="padding:15px;">
            <WAF:TabPanel>
                <addElement>
                    <WAF:TabPanelElement title="Home">
                        <addElement>
                            <div>
                                <h2>This is Home Tab </h2>
                                <h3>TabPanel Example </h3>
                            </div>
                        </addElement>
                    </WAF:TabPanelElement>
                </addElement>
                <addElement>
                    <WAF:TabPanelElement title="About">
                        <addElement>
                            <div>
                                <h2>This is About Tab </h2>
                                <h3>TabPanel Example </h3>
                            </div>
                        </addElement>
                    </WAF:TabPanelElement>
                </addElement>
                <addElement>
                    <WAF:TabPanelElement title="More Info">
                        <addElement>
                            <div>
                                <h2>This is Info Tab </h2>
                                <h3>TabPanel Example </h3>
                            </div>
                        </addElement>
                    </WAF:TabPanelElement>
                </addElement>
            </WAF:TabPanel>
        </div>
    </body>
</html>

package controllers;

import com.openwaf.client.ui.panels.TabPanel;
import com.openwaf.client.ui.panels.TabPanelElement;
import com.openwaf.core.framework.WAFController;

public class ExPanelTab extends WAFController{
    private ExPanelTab(){
    }
}