Re: add a default-gray-text to AutoCompleteTextField

2009-08-06 Thread glooorrryyy
I've got the solution. I have to send the markup-id to the jquery code. Looks like the markup-id is changed from the predefined one. glooorrryyy wrote: > > Why couldn't I set default gray text (like in Google search input field) > for an AutoCompleteTextField? > The fact

Re: Rewrite page parameter to Login_page when session's expired

2009-07-14 Thread glooorrryyy
u can get those by retrieving them from webrequest. > > -igor > > On Sun, Jul 12, 2009 at 8:28 PM, glooorrryyy wrote: >> >> I want to get the page parameter from an expired_page... >> Is it possible? >> >> >> Mathias Nilsson wrote: >>> >

Re: Rewrite page parameter to Login_page when session's expired

2009-07-12 Thread glooorrryyy
I want to get the page parameter from an expired_page... Is it possible? Mathias Nilsson wrote: > > The application class > -- View this message in context: http://www.nabble.com/Rewrite-page-parameter-to-Login_page-when-session%27s-expired-tp24403797p24455752.html Sent from the Wicket - Us

Re: Rewrite page parameter to Login_page when session's expired

2009-07-09 Thread glooorrryyy
The error has been vanished now. It seems the wrong page parameter caused this error. Hm, does anyone know to get the currently page parameter? glooorrryyy wrote: > > Now, I always get this error: > > ERROR - RequestCycle - unexpected exception when handling > an

Re: Rewrite page parameter to Login_page when session's expired

2009-07-09 Thread glooorrryyy
Now, I always get this error: ERROR - RequestCycle - unexpected exception when handling another exception: Unable to find component with id 'loginForm' in [MarkupContainer [Component id = _extend4]]. This means that you declared wicket:id=loginForm in your markup, but that you eithe

Re: Rewrite page parameter to Login_page when session's expired

2009-07-08 Thread glooorrryyy
Which class should I override this method in? Mathias Nilsson wrote: > > @Override > protected IRequestCycleProcessor newRequestCycleProcessor() { > return new WebRequestCycleProcessor() { > > @Override > protected Page onRuntimeExcep

Re: DatePicker

2009-06-28 Thread glooorrryyy
> > On Sun, Jun 28, 2009 at 8:23 PM, glooorrryyy wrote: >> >> Well, I've the same problem with Paul. >> >> Could anyone help us? >> >> >> I created the textfield with this code: >> >> DateTextField.forDateStyle("dateEnd", &q

Re: DatePicker

2009-06-28 Thread glooorrryyy
Well, I've the same problem with Paul. Could anyone help us? I created the textfield with this code: DateTextField.forDateStyle("dateEnd", "M-").add(new DatePicker()); Thanks! Paul T wrote: > > I have a problemette with the DatePicker (I'm using 1.3.1 by the way). > This is the code I hav

RE: Send Page Parameter to Login Page after Calling Logoff Method

2009-06-16 Thread glooorrryyy
Thanks for your reply trames! I've debugged my code and found the solution for my problem :-D FYI, I'm using PageLink(id, responsePage) component for the Logout process. When initialize this pagelink component, the response page are created. This is the real problem for me, since the code below w