Re: [OT] wicket users around the world

2008-12-12 Thread trames
Toledo, Ohio USA Note: This is Toledo in the USA not in Spain! There is a city in the USA with that name. :) Hey at least I see someone else who works in Ohio with Wicket! Toledo is nowhere near Australia or Austria although I think there are some kangaroos hopping around in our great zoo -

Re: AjaxSelfUpdatingTimerBehavior works one time

2008-08-18 Thread trames
Found it... I was using in the html instead of for the WebMarkupContainer. -- View this message in context: http://www.nabble.com/AjaxSelfUpdatingTimerBehavior-works-one-time-tp19002634p19035645.html Sent from the Wicket - User mailing list archive at Nabble.com. -

AjaxSelfUpdatingTimerBehavior works one time

2008-08-15 Thread trames
I am using the AjaxSelfUpdatingTimerBehavior on a WebMarkupContainer. A RefreshingView is within the container. When I load the page, the view works fine. On the first Ajax call, it does update the view and loads fine. On the second call I get Ajax GET stopped because of precondition check, u

Re: AuthenticatedWebApplication Problem

2008-07-29 Thread trames
Yes, there was an index.jsp in the root context. I removed this, and it will now work with myapp /* This seems like a rather obscure problem. Is this documented somewhere or can it be fixed so others won't have to spend time on it. I spend two

RE: AuthenticatedWebApplication Problem

2008-07-28 Thread trames
filter mapping, I have to use the address: http://localhost:8080/MyApp/myapp/ and everything works OK. Should this be submitted as a bug or am I missing something in the big picture? --Tim trames wrote: > > Additionally, if I then type the address > > http://localhost:8080

Re: Wicket database access

2008-02-22 Thread trames
I too am new to Wicket, and wanted to start using it without having to learn a persistance tool. I have never used a framework before, just JSP and Servlets. I tried dabbling a little with JPA, but found it confusing - especially when working with tables whose primary keys have more than one fiel

Re: How to change the style of navigator in PageableViewList

2008-01-21 Thread trames
Extend PagingNavigator. I made a custom one so I can use everywhere: It looks something like this First Prev 1 2 3 4 Next Last The active page will be in Red and italics. You can make it anything you want by changing the HTML and/or CSS. Hope it works for you. Java - CustomPagingNavigator.ja