Re: How to configure development mode so can see changes on-the-fly without restart

2009-03-09 Thread Stefan Malmesjö
Essentially, I'm wanting to replicate the JSP model where you edit jsp files and then the server recompiles changes and presents them without a restart... Thanks for any advice... Jason -- Stefan Malmesjö | Applications Developer Phone +46 (0)8-410 064 49 -- Curalia AB | www.curalia.se

Re: at least one-validation?

2009-08-24 Thread Stefan Malmesjö
Thanks. Just didn't know what to search for. Looking into it now. Thanks for the nudge :) /Stefan On 2009-08-24 13:50, James Carman wrote: form-level validator? 2009/8/24 Stefan Malmesjös.m.mo...@gmail.com: Hi! I have a form that has a number of textfield inputs that are created

Re: at least one-validation?

2009-08-24 Thread Stefan Malmesjö
Yeah, that'd be cool, but I haven't checked wicketstuff. I'll see what I find. /Stefan On 2009-08-24 14:04, James Carman wrote: Although, what you're talking about might be a cool idea for an ajax component. Basically, you'd have a component that edits a list/set of values using text fields

Re: at least one-validation?

2009-08-25 Thread Stefan Malmesjö
Yeah, I got that part. Easy in theory, a bit more complicated in real life :) I'm doing something wrong, and I can't figure out what. My IFormValidator doesn't seem to get the request params correctly. If, in validate(), I use getInput() on the FormComponents, then I get null no matter what

Re: at least one-validation?

2009-08-26 Thread Stefan Malmesjö
Thank you, Vineet. That worked so much better than my attempt. But I still don't quite understand why... :-[ Anyway, now I get a nice error message when I expect one, and none when I don't. :) /Stefan On 2009-08-25 21:02, vineet semwal wrote: what is attribute search panel and how are

dropdownchoice crashes IE7

2009-06-12 Thread Stefan Malmesjö
Hi! A couple of my users have reported that their IE7 crashes when they fiddle around with a dropdown in my app. The browser just shuts down completely when they make a choice in the drowpdownchoice box. It is ajax enabled. I have the exact same version of IE7, and I cannot repeat the

Re: dropdownchoice crashes IE7

2009-06-12 Thread Stefan Malmesjö
problem I have at hand :) /Stefan On 2009-06-12 12:57, Stefan Malmesjö wrote: Hi! A couple of my users have reported that their IE7 crashes when they fiddle around with a dropdown in my app. The browser just shuts down completely when they make a choice in the drowpdownchoice box. It is ajax

ajaxformcomponent

2009-06-30 Thread Stefan Malmesjö
Hi, I'm playing around with validation and ajax, and can't quite seem to do what I want. The goal is to have a checkbox toggle enabled/disabled depending on whether the user has entered a valid email address. So, my simple test looks like this: -- final TextFieldString

Re: ajaxformcomponent

2009-06-30 Thread Stefan Malmesjö
The subject should have been AjaxFormComponentUpdatingBehavior... sorry about that :-[ On 2009-06-30 18:12, Stefan Malmesjö wrote: Hi, I'm playing around with validation and ajax, and can't quite seem to do what I want. The goal is to have a checkbox toggle enabled/disabled depending

Re: ajaxformcomponent

2009-07-01 Thread Stefan Malmesjö
{ System.out.println(not valid); } } }.setThrottleDelay(Duration.ONE_SECOND)); --- On 2009-06-30 18:15, Stefan Malmesjö wrote: The subject should have been AjaxFormComponentUpdatingBehavior... sorry about that :-[ On 2009-06-30 18:12

Re: ajaxformcomponent

2009-07-01 Thread Stefan Malmesjö
Malmesjö wrote: The subject should have been AjaxFormComponentUpdatingBehavior... sorry about that :-[ On 2009-06-30 18:12, Stefan Malmesjö wrote: Hi, I'm playing around with validation and ajax, and can't quite seem to do what I want. The goal is to have a checkbox toggle enabled

Re: ajaxformcomponent

2009-07-01 Thread Stefan Malmesjö
); } } }.setThrottleDelay(Duration.ONE_SECOND)); --- On 2009-06-30 18:15, Stefan Malmesjö wrote: The subject should have been AjaxFormComponentUpdatingBehavior... sorry about that :-[ On 2009-06-30 18:12, Stefan Malmesjö wrote

Re: Can I make AjaxFormSubmitBehavior submit raw form data but not validate it?

2009-07-06 Thread Stefan Malmesjö
Could setting visibility for the FeedbackPanel to false until the form has been properly submitted with a press of a submit button work? /Stefan On Mon, Jul 6, 2009 at 8:42 PM, Thierry Leveque tleve...@gmail.com wrote: Any following on that? Daniel, have you been able to solve your problem?

Re: Can I make AjaxFormSubmitBehavior submit raw form data but not validate it?

2009-07-07 Thread Stefan Malmesjö
I just realized that maybe you need to extend your validators, too, at least if you want your modelobject to be updated. And how you do that on a textfield that is required, I don't really know. Maybe that path is too complicated. /Stefan On 2009-07-06 22:55, Stefan Malmesjö wrote: Could

Re: Converter Problem

2009-07-07 Thread Stefan Malmesjö
Could this have anything to do with applyTimeZoneDifference in PatterDateConverter? It looks like you set it to false, so it shouldn't, but still... it fits the description pretty well... /Stefan On 2009-07-07 19:44, jpalmer1...@mchsi.com wrote: I am having issues with a custom component that

Re: Converter Problem

2009-07-07 Thread Stefan Malmesjö
was thinking the same thing but, as you pointed out, I explicitly set it to false, so I'm not sure why it's behaving this way. I tried setting it to true just as an experiment but the results were the same. Has anyone else seen this? Stefan Malmesjö wrote: Could this have anything to do

Re: Dynamic Query????

2009-07-08 Thread Stefan Malmesjö
http://www.nabble.com/inmethod---grid-website--td20086965.html On Wed, Jul 8, 2009 at 8:57 PM, sfunds sfu...@yahoo.com wrote: Marc Nuri (GMail) wrote: Have a look at inmethod grid and its datasource interfaces. I use it in one of my projects to display JPA queries and it works

deploying in jboss

2009-07-10 Thread Stefan Malmesjö
Hi, I'm trying to deploy my webapp in a jboss as. In jetty it works fine, but in jboss, I get this in the logs when trying to access my index page, does anyone know what I'm doing wrong? /Stefan java.lang.IllegalArgumentException: Can only process HttpServletRequest at

Re: deploying in jboss

2009-07-10 Thread Stefan Malmesjö
As an update, the version of Jboss I'm trying this on is 5.1.0-GA. I also tried it on tomcat 5.5.27, and it works fine there, too. /Stefan On 2009-07-10 13:18, Stefan Malmesjö wrote: Hi, I'm trying to deploy my webapp in a jboss as. In jetty it works fine, but in jboss, I get

Re: deploying in jboss

2009-07-10 Thread Stefan Malmesjö
That's true. I should try talking to the spring people. /Stefan On 2009-07-10 16:53, Igor Vaynberg wrote: this is a spring problem. wicket is not even in the stacktrace. -igor 2009/7/10 Stefan Malmesjös.m.mo...@gmail.com: Hi, I'm trying to deploy my webapp in a jboss as. In jetty it