converter

2012-03-18 Thread neo
Hello I am new in wicket , i have number in textfield in format -x(five digits) but if i input number like 22 , 222 it can by convert with padding zero like 00022,00222 how can do it?thank you very much -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/converter-tp4

Re: Panel problem

2008-04-21 Thread neo anderson
to inject what goes > between the tags. > > -igor > > > On Sun, Apr 20, 2008 at 4:09 PM, neo anderson > <[EMAIL PROTECTED]> wrote: >> >> Does this mean the Panel class itsself can not contain another Panel >> component inside its own class? >>

Re: Panel problem

2008-04-20 Thread neo anderson
Does this mean the Panel class itsself can not contain another Panel component inside its own class? For instance, A.html A.class public class A extends Panel{ public A(String id){ super(id); ... AccordionPanel panel = new AccordionMenu("accordionMenu"); // ex

wicket login problem

2008-04-10 Thread Neo Anderson
I follow the tutorial http://www.developer.com/java/web/article.php/10935_3673576_1 to learn how to use wicket. And I want to practise not to embed the Form inside another class. So I create a class called LoginForm.java and move the code to there (as follow). public class LoginForm extends For

Re: London Wicket User Event

2007-12-30 Thread Neo Anderson
May I forward this message to other people? I think that would be great for developers who are also interested in such event. Thank you very much. - Original Message From: jweekend <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Sunday, 30 December, 2007 9:51:35 PM Subject: Londo

Re: Components questions

2007-12-22 Thread Neo Anderson
be prepared well first (). Sometime the column length is generated though database, it is impossible for developers to prepare those data first. What can I do in Wicket of this case? - Original Message From: Neo Anderson <[EMAIL PROTECTED]> To: users@wicket.apache.org Sent: Saturd

Re: Components questions

2007-12-22 Thread Neo Anderson
users@wicket.apache.org Sent: Saturday, 22 December, 2007 11:41:09 PM Subject: Re: Components questions Am Samstag, 22. Dezember 2007 16:23:30 schrieb Neo Anderson: > I am new to Wicket framework and I got a few questions. > > Does Wicket provide components such as grid (tab

Components questions

2007-12-22 Thread Neo Anderson
I am new to Wicket framework and I got a few questions. Does Wicket provide components such as grid (table)? If yes, does the grid / table support row/ column span? If not, what should I do if I want to achieve such effect in Wicket? Thank you very much. ___