Hi,
I have a simple code which is running fine in chrome...
// defining text field for user to search
* final RequiredTextField<String> searchTextField = new
RequiredTextField<String>(
"search");
searchTextField.add(new AjaxFormSubmitBehavior("onSubmit") {
protected void onSubmit(AjaxRequestTarget target) {
try {
// some processing
if (target != null) {
target.add(searchFeedbackPanel);
}
}
});
*
But in IE, it is causing page refresh...how can i solve this issue?
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/AjaxFormSubmitBehavior-causing-page-refresh-in-IE-tp4651267.html
Sent from the Users forum mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]