Re: Wicket 1.5 and glassfish 3.1.1 clustering (session replication)

2011-08-03 Thread Vytautas R.
Yes, i know, it looks like glassfish is not very stable - same application different tests - different results :( I should clean up the cache from my head :D On Tue, Aug 2, 2011 at 9:55 PM, Zilvinas Vilutis cika...@gmail.com wrote: I thought session is managed by container ( Glassfish in this

Re: Disabling Entire Page, and Redirecting to Page in N Seconds

2011-08-03 Thread vineet semwal
then just create your own overlay in css .. On Wed, Aug 3, 2011 at 6:52 AM, eugenebalt eugeneb...@yahoo.com wrote: Thanks. Good suggestion. Will give it a try, but never worked with jQuery before. -- View this message in context:

flush ajaxRequestTarget.appendJavascript

2011-08-03 Thread Lurtz Nazgul
Hi; When i append jquery progressbar script to AjaxRequestTarget like below for (int i = 0; i 101; i++) { ajaxRequestTarget.appendJavascript($(document).ready(function() {\n + $(\#progressbar\).progressbar({ value: + i + });\n +

Re: Disabling Entire Page, and Redirecting to Page in N Seconds

2011-08-03 Thread Andrea Del Bene
Hi eugenebalt, why not just call setEnabled(false) on form component? Thanks. Good suggestion. Will give it a try, but never worked with jQuery before. -- View this message in context:

Re: flush ajaxRequestTarget.appendJavascript

2011-08-03 Thread Lurtz Nazgul
I used AjaxSelfUpdatingTimerBehavior and it's done. Thanks. From: Lurtz Nazgul lu...@ymail.com To: users@wicket.apache.org Sent: Wed, August 3, 2011 11:36:50 AM Subject: flush ajaxRequestTarget.appendJavascript Hi; When i append jquery progressbar script to

Re: Wicket 1.5 and glassfish 3.1.1 clustering (session replication)

2011-08-03 Thread Korbinian Bachl - privat
Hello, Vytautas, can you please make a bugreport on http://java.net/jira/browse/GLASSFISH 3.1.1 indeed has some quirks, but its better than 3.1; HTTP/HTTPS and wicket will loose JSessionId (http://java.net/jira/browse/GLASSFISH-17131) a.t.m. but if we give nice bug reports they will get fixed

Username gets cached

2011-08-03 Thread Anna Simbirtsev
Hi, On the login page I have a text field with wicket id username and Password text field with wicket id password. If I have a password text field on a different page with different wicket id, it caches the values and populates the password field with password and the field before it with

Re: Username gets cached

2011-08-03 Thread robert.mcguinness
are you sharing the same model between pages? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Username-gets-cached-tp3715475p3715532.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Username gets cached

2011-08-03 Thread Anna Simbirtsev
No, I am not. The pages are not related. On Wed, Aug 3, 2011 at 9:54 AM, robert.mcguinness robert.mcguinness@gmail.com wrote: are you sharing the same model between pages? -- View this message in context:

Re: Username gets cached

2011-08-03 Thread vineet semwal
try after doing autocomplete off on that textfield On Wed, Aug 3, 2011 at 7:31 PM, Anna Simbirtsev asimbirt...@gmail.com wrote: No, I am not. The pages are not related. On Wed, Aug 3, 2011 at 9:54 AM, robert.mcguinness robert.mcguinness@gmail.com wrote: are you sharing the same model

Re: Username gets cached

2011-08-03 Thread Anna Simbirtsev
I have autocomplete=off, it does not work. On Wed, Aug 3, 2011 at 10:12 AM, vineet semwal vineetsemwal1...@gmail.comwrote: try after doing autocomplete off on that textfield On Wed, Aug 3, 2011 at 7:31 PM, Anna Simbirtsev asimbirt...@gmail.com wrote: No, I am not. The pages are not

Re: Username gets cached

2011-08-03 Thread Martin Funk
Looking at 1.5-RC5.1 I'd say public final PasswordTextField setResetPassword(final boolean resetPassword) will fix that. But besides that I'd definitely investigate how the models of the two PasswordTextFields are connected. mf 2011/8/3 Anna Simbirtsev asimbirt...@gmail.com I have

Re: Issues with HeaderResponseContainerFilteringHeaderResponse

2011-08-03 Thread Loren Cole
Hey guys, thanks for your responses. We're still using 1.4, it looks like it will be a few months till we get to upgrade and use all the improvements that have been made to resource handling in 1.5. In 1.4 it appears that you cannot put a bucket in the header without things getting confused and

Re: Safari hangs on ajax form submit

2011-08-03 Thread Peter Miklosko
Where did you see 1.4.18? I do not see it on SVN https://svn.apache.org/repos/asf/wicket/branches/ Peter On 2 August 2011 21:55, trodi t_roy...@hotmail.com wrote: Dan Retzlaff wrote: Are you encountering this? https://issues.apache.org/jira/browse/WICKET-3820 I also recently

Re: Markup of type 'html' not found. Not usual error...

2011-08-03 Thread Tito
Hi everybody. This time Im writing to tell you that I solved my problem. Perhaps this will be useful for someone. It was a stupid error but it was hard to realize what the problem was. It was a locale error. I created html pages with _es.html suffix and I didn't create .html for default use.

Re: Safari hangs on ajax form submit

2011-08-03 Thread Martin Grigorov
1.4.18 will be the next release in 1.4 series On Wed, Aug 3, 2011 at 6:55 PM, Peter Miklosko peter.b...@gmail.com wrote: Where did you see 1.4.18? I do not see it on SVN https://svn.apache.org/repos/asf/wicket/branches/ Peter On 2 August 2011 21:55, trodi t_roy...@hotmail.com wrote: Dan

Re: Issues with HeaderResponseContainerFilteringHeaderResponse

2011-08-03 Thread Martin Grigorov
Hi Loren, See whether you can find the mail mentioned in https://cwiki.apache.org/confluence/display/WICKET/Resource+decoration in the mail archives. Jeremy attached the raw application in this mail thread and I transformed it to proper wicket-example for 1.5 On Wed, Aug 3, 2011 at 6:36 PM,

DataViw double clickable rows and ModalWindow

2011-08-03 Thread Decebal Suiu
Hello I have a panel with a DataTable and, in newRowItem() I added an AjaxEventBehavior(ondblclick). Everything works fine if I add the panel in a WebPage but doesn't work in a ModalWindow. It's a bug or I do something wrong? Any advice it's welcome. Thanks, Decebal -- View this message in

Re: DataViw double clickable rows and ModalWindow

2011-08-03 Thread Pedro Santos
looks like a bug On Wed, Aug 3, 2011 at 2:46 PM, Decebal Suiu decebal.s...@asf.ro wrote: Hello I have a panel with a DataTable and, in newRowItem() I added an AjaxEventBehavior(ondblclick). Everything works fine if I add the panel in a WebPage but doesn't work in a ModalWindow. It's a bug

Re: Validation problem - OnError event everytime I submit

2011-08-03 Thread phaedoland
Hi!! Everything related to the Panel was okay. The only thing that happened in this case was, we had the override the cleanupFeedbackMessages() method overriden in our own Session class, and did not call the super.cleanupFeedbackMessages(). Everything is fine, now. This situation was driving

Re: CSS, JS resource file handle issues?

2011-08-03 Thread rush66
We setup a development environment in Ubuntu running the application and it did not appear to have the same issue with editing resources with the app server running. Changes were picked up from refreshing the browser. This issue makes development a rather cumbersome process not being able to

Component with ListView that adds other Components?

2011-08-03 Thread Gary Thomas
Stumped on this, seemed it should simple: I am making a component that uses a ListView. Two important requirements: 1) This component will add Components and other markup before the list items, which I do not want the page designer or Java coder to worry about adding themselves in markup or

Re: Safari hangs on ajax form submit

2011-08-03 Thread Peter Miklosko
Well that is sort of obvious based on current versions pattern ;) Is there any expected date for release? On 3 August 2011 17:05, Martin Grigorov mgrigo...@apache.org wrote: 1.4.18 will be the next release in 1.4 series On Wed, Aug 3, 2011 at 6:55 PM, Peter Miklosko peter.b...@gmail.com