two LDM DropDownChoice behave differently ?

2010-03-20 Thread David Chang
Hello, I am playing Wicket now and came across this strange behavior. I have a page with two LDM-based DropDownChoice (Country and State). The Country DDC ajax-controls the State DDC. The Ajax works well. Here is something I dont understand. When the page is diplayed first time, both

Re: A web site developed with Wicket

2010-03-20 Thread Peter Ertl
After using CSS for layout things for two years my summary is: Use tables for layout, CSS for the rest It it simple, it works, and it doesn't break in each new version of IE Am 18.03.2010 um 08:39 schrieb nino martinez wael: CSS are the way to do stuff, but usually IE smashes it somehow. My

jWicket 0.5.2

2010-03-20 Thread Stefan Lindner
I checked in jwicket 0.5.2 into wicketstuff/trunk. This fiexes an Ajax update problem for input fields with DatePicker with button as trigger. Looks like Ajax redraws of wicket components with jQuery behavior is always a problem. Stefan

Re: jWicket 0.5.2

2010-03-20 Thread David Leangen
Hi, What's the difference between jwicket and wiQuery? Is it necessary to have 2 separate projects? Just curious, because I'll soon be looking into better jQuery integration. Thanks! =David On Mar 20, 2010, at 8:50 PM, Stefan Lindner wrote: I checked in jwicket 0.5.2 into

AW: jWicket 0.5.2

2010-03-20 Thread Stefan Lindner
Hi David, take a look at both amd make your own decision. I can only speek for jWicket. - At the moment it's main focus is drag/drop/resize. That's why I started this project. - It trys to implement mostly all callback functions - It trys to implement mostly all options - It's part of

Re: Help with integrating NTLM in wicket application

2010-03-20 Thread Josh Chappelle
Bryan, I'm out of town right now but when I get back to my computer I will send you our ntlm page code. We have an AuthorizationStrategy that redirects the user to NTLMPage and it handles all the header stuff like you are talking about. If I don't send it to you Sunday then email me to

(Un-)deployment woes on Tomcat (and JBoss)

2010-03-20 Thread Alexandros Karypidis
Hi, I'm having problems with deployment/undeployment of Wicket apps on Tomcat (and also JBoss, though I think it's related to the fact that it embeds Tomcat). Basically, in both cases undeployment comes back with an Exception, leaving the server in a dirty state and I have to restart the

Handling Composite Data Table Efficiently

2010-03-20 Thread rock stone
Hi, I have implemented a data table with cells having components as TextFields, Buttons etc. Currently,I have been able to achieve this by enclosing them inside panels. But with large data set to be displayed I think it might consume lot of UI resources or rendering time. Is there any other

Re: two LDM DropDownChoice behave differently ?

2010-03-20 Thread Igor Vaynberg
state's model is only loaded if the dropdown is rerendered (thats when the model is needed) see here http://wicketstuff.org/wicket14/ajax/choice -igor On Fri, Mar 19, 2010 at 11:21 PM, David Chang david_q_zh...@yahoo.com wrote: Hello, I am playing Wicket now and came across this strange

Re: (Un-)deployment woes on Tomcat (and JBoss)

2010-03-20 Thread Pierre Goupil
I often have the same problem and symptom in my dev Tomcat, forcing me te restart it. On Sat, Mar 20, 2010 at 5:06 PM, Alexandros Karypidis akary...@yahoo.grwrote: Hi, I'm having problems with deployment/undeployment of Wicket apps on Tomcat (and also JBoss, though I think it's related to

Re: can intermittent 'illegal relative path' be cause by something besides broken session affinity?

2010-03-20 Thread Nikita Tovstoles
I wonder if this is a serialization problem: the following request: 10.242.46.21 - - [20/Mar/2010:13:04:19 -0400] POST /?wicket:interface=:0:EmbeddedCategoryCriteriaPanel:inputPanel:categorySearchForm:zipCodeComponent:zipCode::IBehaviorListener:1:10random=0.014624584217842351 HTTP/1.1 200 161

jWicket 0.5.4

2010-03-20 Thread Stefan Lindner
jWicket 0.5.4 is released in wicketstuff/trunk and wicketstuff/releases/1.4 I recomend to upgrade to this versioin as it fixes a serious bug in drag/drop/resize. If someone needs pre-built jar files please let me know. Stefan -

Re: jWicket 0.5.4

2010-03-20 Thread Ernesto Reinaldo Barreiro
Hi Stefan, Thanks for sharing! Regarding the issue with drag-drop I just added [1] and [2]. I locally patched my jquery to get it working but this is something I do not like. I'll keep you informed if someone provides an official fix. Best, Ernesto References.

Re: (Un-)deployment woes on Tomcat (and JBoss)

2010-03-20 Thread Igor Vaynberg
interesting, wonder why the class would be unloaded *before* the application classloader. try this, add a field private PropertyClassResolver resolver=null; to your application subclass, see if the field is enough to stop the class from unloading. -igor On Sat, Mar 20, 2010 at 9:06 AM,

Re: can intermittent 'illegal relative path' be cause by something besides broken session affinity?

2010-03-20 Thread Igor Vaynberg
i doubt its the diskstore since you are the only one seeing this problem. is this happening on multiple pages or just a particular one? -igor On Sat, Mar 20, 2010 at 10:34 AM, Nikita Tovstoles nikita.tovsto...@gmail.com wrote: I wonder if this is a serialization problem: the following

Re: Dynamic Image (aka Barcode) based on user input not refreshed via Ajax

2010-03-20 Thread Doug Leeper
Perfect! Thanks! -- View this message in context: http://old.nabble.com/Dynamic-Image-%28aka-Barcode%29-based-on-user-input-not-refreshed-via-Ajax-tp27961609p27972311.html Sent from the Wicket - User mailing list archive at Nabble.com.

Re: can intermittent 'illegal relative path' be cause by something besides broken session affinity?

2010-03-20 Thread Nikita Tovstoles
OK, here's what I can surmise thus far: - Only 'wicket:interface' JS requests - from 'onchange' Ajax validator or from a SubmitLink-initiated form submission trigger the exception - the form being submitted or validated is in a couple of pages but *never *in *StateProgramDetailsPage*

Re: Don't increment the Session.pageIdCounter for stateless pages?

2010-03-20 Thread Martin Grotzke
What about using the @StatelessComponent (moving it from devutils into wicket) as an indicator, that pages are intended to be stateless (_must_ be stateless)? Or introduce a new annotation @StatelessPage? When a page that is intented to be stateless turns to be stateful, it's always an issue

Re: can intermittent 'illegal relative path' be cause by something besides broken session affinity?

2010-03-20 Thread Nikita Tovstoles
I may have found something - but first another question: under which conditions would an ajax wicket:interface request omit a 'version'? (I see request processor then assumes that the version is 0). I may have found a race condition: - check out

Ajax has too much control?

2010-03-20 Thread David Chang
Forgive me about this meaningless subject, but I cannot think of a better one. I have been learning Wicket through the WIA book. I just found out something interesting to me. Not sure it is a bug, design, or something I did wrong. I have a page with three Wicket elements: 1. Locale selector