Re: wicket-bootstrap and another webjars components

2013-11-22 Thread Shengche Hsiao
This is the quickstart on git hub https://github.com/Shengche/webjars-wicket - We do this not because it is easy. We do this because it is hard. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/wicket-bootstrap-and-another-webjars-components-tp4662572p4662624.ht

Re: Optional wrapping H1 tag

2013-11-22 Thread Maxim Solodovnik
You can avoid code duplication in case you don't really need h1 tag, but it is enough just to look like h1 tag ... you can add css like: h1, .myH1 { font-size:24px; } and change markup to be ABC, Inc. you will set your custom class on homeLinkContainer is current page is home page On Sat, N

Link to BreadCrumbPanel from javascript

2013-11-22 Thread jchappelle
I have written an integration between Google Visualization api and Wicket. I can click on a chart and receive an onSelection() event in java and it hands me information about what was clicked. This all works great. The problem is that often times I want to bread crumb to another panel instead of

Session invalidation and background thread

2013-11-22 Thread Marios Skounakis
Hi all, This is maybe a Spring question but as my app is a wicket app and I use this list regularly and everyone is very helpful I thought I'd ask here first. I have a RequestCycleListener which during onBeginRequest() conditionally spawns some background threads and runs them using an Executor.

Optional wrapping H1 tag

2013-11-22 Thread Scott Carpenter
Suppose you have a web site with a logo in the header which links to the home page. On the home page itself, you have the same logo and the link, but you also want to wrap the logo with an H1 tag. (Or maybe it's not that you have a burning desire to do this, but your client has requested it.) In

Re: Optional wrapping H1 tag

2013-11-22 Thread Sebastien
Maybe just using setEnabled(false) in the HomaPage? On Fri, Nov 22, 2013 at 7:24 PM, Scott Carpenter wrote: > Suppose you have a web site with a logo in the header which links to the > home page. On the home page itself, you have the same logo and the link, > but you also want to wrap the logo w

Re: Sign to Google with Java Wicket

2013-11-22 Thread Martin Grigorov
Hi, You can check Planning Poker application. It uses Buji-OAuth library to login to Google. I have used https://github.com/fernandezpablo85/scribe-java for implementing OAuth authorization before. It works well for many OAu