Re: Render a component in a background thread.

2015-05-29 Thread Christoph Läubrich
Can you explain what is the reason for using a background-thread? Depending on your container you might want to use e.g. Continuations or Servlet-Async to compute lengthy values in the background and then let render the page as normal in the RequestCycle depending on that result. Am

Re: Render a component in a background thread.

2015-05-29 Thread Peter Henderson
On Fri, May 29, 2015 at 9:22 AM, Christoph Läubrich lae...@googlemail.com wrote: Can you explain what is the reason for using a background-thread? Depending on your container you might want to use e.g. Continuations or Servlet-Async to compute lengthy values in the background and then let

Re: Loading Javascript for wicket component

2015-05-29 Thread MartinoSuperman
When you use the 'target' of AjaxRequestTarget, you can use the method appendJavaScript(..) in it. You can call a function in JavaScript in it. In that way, you are loading a JavaScript with and for a Wicket component. -- View this message in context:

Re: Making RadioChoice horizontal

2015-05-29 Thread Sven Meier
choice.setSuffix() Have fun Sven On 29.05.2015 11:55, MartinoSuperman wrote: Dear, I made a RadioChoice on my Wicket web page with 3 radio buttons in it. These radio buttons in this RadioChoice are shown vertically. I want to make those horizontally. Can someone tell me how to do that?

Making RadioChoice horizontal

2015-05-29 Thread MartinoSuperman
Dear, I made a RadioChoice on my Wicket web page with 3 radio buttons in it. These radio buttons in this RadioChoice are shown vertically. I want to make those horizontally. Can someone tell me how to do that? -- View this message in context:

Re: Render a component in a background thread.

2015-05-29 Thread Don Ferguson
From your description of the problem, it doesn’t really seem like you need a renderer — perhaps abstracting out the search criterion as a pure java (non-wicket-specific) object that can be used both in the UI and in data export would be a better approach. That said, here’s what I’m doing to