Re: [Wicket-user] Wicket (1.2.4) TabbedPanel Guidance Question

2007-04-17 Thread pwillemann
No I never get a stack trace. Everything seems fine until the rows issue. I get the error listed in my last post and a copy of the html with the rows line in red. I have used the quickstart and the Apress Wicket book as guides in my wicket learning.If I want you to debug it in

Re: [Wicket-user] Wicket (1.2.4) TabbedPanel Guidance Question

2007-04-17 Thread pwillemann
I was using wicket 1.2.4. I downloaded the quickstart 1.2.5 bin and extracted to my machine. I stripped out hibernate and all irrelevant parts. The only significant change I had to make was to the TabbedPanelPage.html file. I had to get rid of the wicket:extend reference. You will see a

Re: [Wicket-user] Wicket (1.2.4) TabbedPanel Guidance Question

2007-04-16 Thread pwillemann
I have the following: 1.) TabbedPanelPage.java panel page with 4 tabs (in my case PlayersTab) 2.) PlayersTab.java file which will do a getPanel to return a PlayersPanel. PlayersPanel is derived from Panel. 3.) PlayersPanel.java file which is the facade class to my MySQL database. I use a

Re: [Wicket-user] Wicket (1.2.4) TabbedPanel Guidance Question

2007-04-16 Thread pwillemann
Here is the code from the relevant java and html files. TabbedPanelPage.java as follows: public class TabbedPanelPage extends BasePage { public TabbedPanelPage() { setModel(new Model(tabpanel)); // A-G, H-N, O-S, T-Z

Re: [Wicket-user] Wicket (1.2.4) TabbedPanel Guidance Question

2007-04-16 Thread pwillemann
I posted the correct file however the forum is having problems with the span command. I changed span to sspan so you could see what I was doing: wicket:panel table frame=box thead tr thID/th thFirst Name /th thLast Name/th