Wicket stuff core, archetypes?

2008-12-20 Thread Nino Martinez
Hi I were thinking that it would be nice to have archetypes for single wicketstuff core project and one with a multi module (the stuff project and a example one), I guess it would provide event more structure.. WDYT? regards Nino

https/http using wicket + swarm + acegi

2008-12-20 Thread David Ojeda
Hello all, I am developing an application and have successfully configured swarm + acegi. I was just wondering if anyone has any experience with this authentication/authorization scheme and can switch to/from https. What I would like is to go to the login page using https and back to http after a

Re: Wicket stuff core, archetypes?

2008-12-20 Thread francisco treacy
hi nino, have you seen jon's idea of automatic component , and/or wickethub.org thread? discussion went around providing to wicket component developers some sort of archetype that can help to 'standardize'/ 'give more structure' - also useful to perhaps crawl those artifacts (with metadata) and

Re: Formatting dates in Inmethod DataGrid

2008-12-20 Thread Jurek Piasek
Many thanks! On Thu, Dec 18, 2008 at 7:54 PM, TahitianGabriel glan...@piti.pf wrote: public class DatePropertyColumn extends PropertyColumn { /** * @see com.inmethod.grid.column.PropertyColumn#getConverter(java.lang.Class) */ @Override protected IConverter

Re: Wicket stuff core, archetypes?

2008-12-20 Thread Nino Martinez
Ahh, no did'nt follow the thing that far, will read up on it now.. I'll be looking forward to see some stuff in a couple of weeks :) francisco treacy wrote: hi nino, have you seen jon's idea of automatic component , and/or wickethub.org thread? discussion went around providing to wicket

Dynamic Simple (html) Components

2008-12-20 Thread mito
Hi, I've been using Wicket at home for quite a while. The company I work for has an old Swing application and we've been trying to figure out how to migrate it and make it web based. Even though I've been pitching in for Wicket since day one, the team lead decided to go with standard stack

Re: WicketTester and BrowserInfoPage

2008-12-20 Thread walnutmon
wicketTester.processRequestCycle(), if I understand your question correctly Sujit Arungundram wrote: I have setGatherExtendedBrowserInfo(true) and inside my main entry page, the Login Page, I read the clientInfo object. When I try to test the rendering of the login page using

Is there any collapsible container ?

2008-12-20 Thread miro
Is there any collapsible container? -- View this message in context: http://www.nabble.com/Is-there--any-collapsible-container---tp21112328p21112328.html Sent from the Wicket - User mailing list archive at Nabble.com.

code for DataGrid with vertical scrolling

2008-12-20 Thread miro
please point me for the code with data grid vertical scrolling component. -- View this message in context: http://www.nabble.com/code-for-DataGrid-with-vertical-scrolling-tp21112343p21112343.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: Dynamic Simple (html) Components

2008-12-20 Thread Erik van Oosten
Hi Mito, Basically you are asking for Label. Label can generate anything you want. Look at the source of Label for inspiration if you need more customization.1 Also take a look at TextTemplate. There is also a FreeMarker version, I think its in wicketq-extra. Regards, Erik. mito