Re: Tabbed Page

2009-02-13 Thread Daniel Ferreira Castro
The problem is. My case is that I have a Base Page from where all other page inherit a common layout. This base page have an AjaxTab. This ajax tab component have its tabs. Each of these tabs have a getPanel method and the returned panel have another Ajax Tab. Should I have a markup html for

Re: Tabbed Page

2009-02-13 Thread Daniel Ferreira Castro
I am trying to figure out what tag is beeing expected... This is my base page markup !DOCTYPE html PUBLIC -//W3C//DTD HTML 4.01 Transitional//EN http://www.w3.org/TR/html4/loose.dtd; meta http-equiv=Content-Type content=text/html; charset=ISO-8859-1 META HTTP-EQUIV=CACHE-CONTROL

Re: Tabbed Page

2009-02-13 Thread Igor Vaynberg
inside your first level tab that will contain other tabbed panel you need div wicket:id=innerTabs/div for the inner panel to attach to. -igor On Fri, Feb 13, 2009 at 4:18 AM, Daniel Ferreira Castro dfcas...@gmail.com wrote: I am trying to figure out what tag is beeing expected... This is my

Tabbed Page

2009-02-11 Thread Daniel Ferreira Castro
Is it possible to have other tabbed pannels inside a tabbed panel? Imagine the example http://wicketstuff.org/wicket13/ajax/tabbed-panel.1 If I click on first tab, instead of showing This is tab-panel 1 it would show, or at least I would like to, show another tabbed panel with tabs and those

Re: Tabbed Page

2009-02-11 Thread Thomas Mäder
What's the problem? A TabbedPanel is a Panel, so you can return it from ITabl.getPanel(). Thomas On Wed, Feb 11, 2009 at 12:21 PM, Daniel Ferreira Castro dfcas...@gmail.com wrote: Is it possible to have other tabbed pannels inside a tabbed panel? Imagine the example