New Info:
So I've been promoting over and over, having backed the panel out and slowly
building it back up. When I don't build the buttons in the middle, the page
submits normally. The html for the buttons is:
<div id="tabbuttons">
<button type="button" title="Add"
wicket:id="addSelected">></button>
<button type="button" title="Add All"
wicket:id="addAll">>></button>
<button type="button" title="Remove"
wicket:id="removeSelected"><</button>
<button type="button" title="Remove All"
wicket:id="removeAll"><<</button>
</div>
the java is:
add(new AjaxButton("addSelected") {
private static final long serialVersionUID = 1L;
@SuppressWarnings({ "rawtypes" })
@Override
protected void onSubmit(AjaxRequestTarget target, Form
form) {
onAddSelected(target);
}
}.setDefaultFormProcessing(false));
add(new AjaxButton("addAll") {
private static final long serialVersionUID = 1L;
@SuppressWarnings({ "rawtypes" })
@Override
protected void onSubmit(AjaxRequestTarget target, Form
form) {
onAddAll(target);
}
}.setDefaultFormProcessing(false));
add(new AjaxButton("removeSelected") {
private static final long serialVersionUID = 1L;
@SuppressWarnings({ "rawtypes" })
@Override
protected void onSubmit(AjaxRequestTarget target, Form
form) {
onRemoveSelected(target);
}
}.setDefaultFormProcessing(false));
add(new AjaxButton("removeAll") {
private static final long serialVersionUID = 1L;
@SuppressWarnings("rawtypes")
@Override
protected void onSubmit(AjaxRequestTarget target, Form
form) {
onRemoveAll(target);
}
}.setDefaultFormProcessing(false));
--
View this message in context:
http://apache-wicket.1842946.n4.nabble.com/1-4-7-app-form-does-not-submit-on-server-when-panel-is-not-visible-tp4663114p4663132.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]