Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Lan Boon Ping
en you click back button, is there another http request ? -Matej On 3/26/07, Lan Boon Ping <[EMAIL PROTECTED]> wrote: > Hi, > > Thanks for your quick reply. > > Overriding configurReponse doesn't solve the problem. Unfortunately, we > couldn't upgrade to new version

Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Lan Boon Ping
che-Control", "no-store, max-age=0, must-revalidate"); } -Matej On 3/26/07, Lan Boon Ping <[EMAIL PROTECTED]> wrote: > Hi, Matej Knopp! > > I'm using wicket-1.2.3. > > Thanks. > > Regards > Boon Ping > > > On 3/26/07, Matej Knopp

Re: [Wicket-user] AutoComplete TextField broken

2007-03-26 Thread Lan Boon Ping
Hi, Matej Knopp! I'm using wicket-1.2.3. Thanks. Regards Boon Ping On 3/26/07, Matej Knopp <[EMAIL PROTECTED]> wrote: What wicket version are you using? On 3/26/07, Lan Boon Ping <[EMAIL PROTECTED]> wrote: > Hi all, > > I have a problem in AutoComplete textfie

[Wicket-user] AutoComplete TextField broken

2007-03-25 Thread Lan Boon Ping
Hi all, I have a problem in AutoComplete textfield, here are the use cases. Use case A - test auto-complete field - (works) - type www.google.com in URL bar and press enter to navigate google main page. - click on "back" button back to auto-complete page - test auto-complete field - (works) Us

Re: [Wicket-user] Tree Node Link and Page Expired Issue

2007-02-28 Thread Lan Boon Ping
It works now. Thanks for your fast reply! Regards Boon Ping On 3/1/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: what you want is getsessionsettings().setpagemapevictionstrategy(new leastrecentlyaccessedevictionstrategy(15)) -igor On 2/28/07, Lan Boon Ping <[EMAIL PROTECTED]>

[Wicket-user] Tree Node Link and Page Expired Issue

2007-02-28 Thread Lan Boon Ping
Hi all, I have a Page Expired issue in tree node link, for example I have a tree, when i click on any node 6 times or more and click 5 times on "Back" button back to first visited page, and click on any tree node I will get Page Expired exception. Does anyone know how to solve this problem? By

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Lan Boon Ping
Hi Hailong, E.g Step1. Create a subclass of FeedbackPanel public class MyFeedBackPanel extends FeedbackPanel{ public MyFeedBackPanel(String id) { super(id); } } Step 2. Create a markup for this class and make sure FeedbackPanel wicket:ids markup matched with your own markup. Plea