AjaxButton wont work with PasswordTextField in IE7

2011-04-13 Thread drf
I have a form with an AjaxButton, and it works fine.
When the button is clicked, the onSubmit() method defined for the button is
called.
However, after adding a PasswordTextField to the form, the button ceases to
work, meaning the onSubmit() method is no longer called.

The browser is IE7 - the application has to support this browser.
Any help greatly appreciated! 

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AjaxButton-wont-work-with-PasswordTextField-in-IE7-tp3447260p3447260.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AjaxButton wont work with PasswordTextField in IE7

2011-04-13 Thread Martin Grigorov
add #onError() next to onSubmit() and see what the error is ;-)

On Wed, Apr 13, 2011 at 4:13 PM, drf davidrfi...@gmail.com wrote:

 I have a form with an AjaxButton, and it works fine.
 When the button is clicked, the onSubmit() method defined for the button is
 called.
 However, after adding a PasswordTextField to the form, the button ceases to
 work, meaning the onSubmit() method is no longer called.

 The browser is IE7 - the application has to support this browser.
 Any help greatly appreciated!

 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/AjaxButton-wont-work-with-PasswordTextField-in-IE7-tp3447260p3447260.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/


Re: AjaxButton wont work with PasswordTextField in IE7

2011-04-13 Thread drf
what is the best way to get the error within onError() ?
form.getFeedbackMessage() returns null

thanks



--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AjaxButton-wont-work-with-PasswordTextField-in-IE7-tp3447260p3447335.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AjaxButton wont work with PasswordTextField in IE7

2011-04-13 Thread Martin Grigorov
some of the form components has error
most probably the password field since it introduced the problem
see FeedbackPanel's source to see how to read the feedback messages

On Wed, Apr 13, 2011 at 4:42 PM, drf davidrfi...@gmail.com wrote:

 what is the best way to get the error within onError() ?
 form.getFeedbackMessage() returns null

 thanks



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/AjaxButton-wont-work-with-PasswordTextField-in-IE7-tp3447260p3447335.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




-- 
Martin Grigorov
jWeekend
Training, Consulting, Development
http://jWeekend.com http://jweekend.com/


Re: AjaxButton wont work with PasswordTextField in IE7

2011-04-13 Thread Igor Vaynberg
most likely because that field is required by default

-igor


On Wed, Apr 13, 2011 at 7:45 AM, Martin Grigorov mgrigo...@apache.org wrote:
 some of the form components has error
 most probably the password field since it introduced the problem
 see FeedbackPanel's source to see how to read the feedback messages

 On Wed, Apr 13, 2011 at 4:42 PM, drf davidrfi...@gmail.com wrote:

 what is the best way to get the error within onError() ?
 form.getFeedbackMessage() returns null

 thanks



 --
 View this message in context:
 http://apache-wicket.1842946.n4.nabble.com/AjaxButton-wont-work-with-PasswordTextField-in-IE7-tp3447260p3447335.html
 Sent from the Users forum mailing list archive at Nabble.com.

 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org




 --
 Martin Grigorov
 jWeekend
 Training, Consulting, Development
 http://jWeekend.com http://jweekend.com/


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org