Re: Hide "Wicket AJAX Debug" window

2008-03-13 Thread Martijn Dashorst
You really should deploy using DEPLOYMENT mode, not randomly modifying settings in your init() method. Martijn On 3/13/08, hjuturu <[EMAIL PROTECTED]> wrote: > > Thanks Ryan and Gerolf. > I put the settings in the init() method and it works fine. > > > > hjuturu wrote: > > > > Hi All > > i

Re: Hide "Wicket AJAX Debug" window

2008-03-13 Thread hjuturu
Thanks Ryan and Gerolf. I put the settings in the init() method and it works fine. hjuturu wrote: > > Hi All > i have a label on my webpage on which i do a in line edit using > AjaxEditableLabel. > I have included wicket-event.js and wicket-ajax.js javascripts in my page. > When i start editing

Re: Hide "Wicket AJAX Debug" window

2008-03-12 Thread Ryan Gravener
You can also do: getDebugSettings().setAjaxDebugModeEnabled(false); in your Application.init() method. On Wed, Mar 12, 2008 at 6:21 PM, Gerolf Seitz <[EMAIL PROTECTED]> wrote: > this window only shows up when you start your wicket application > in development mode. > it won't show up in produc

Re: Hide "Wicket AJAX Debug" window

2008-03-12 Thread Gerolf Seitz
this window only shows up when you start your wicket application in development mode. it won't show up in production mode. Gerolf On Wed, Mar 12, 2008 at 11:14 PM, hjuturu <[EMAIL PROTECTED]> wrote: > > Hi All > i have a label on my webpage on which i do a in line edit using > AjaxEditableLabe

Hide "Wicket AJAX Debug" window

2008-03-12 Thread hjuturu
Hi All i have a label on my webpage on which i do a in line edit using AjaxEditableLabel. I have included wicket-event.js and wicket-ajax.js javascripts in my page. When i start editing the label the "wicket ajax debug" window appears on the lower right corner. how can i hide that window. Thanks H