EDIT:
This question was originally about checkboxes, but I am getting the same behavior with a dropdown list. The code:
productInput = new DropDownChoice<String>("productInput",
new PropertyModel<String>(this, "productSelection"),
products);
productInput.add(new AjaxFormComponentUpdatingBehavior("onchange") {
@Override
protected void onUpdate(AjaxRequestTarget target)
{
if (productSelection == null) // Breakpoint is set on this line
{
updateDropdownsAfterFieldDisabled(1, target);
}
else
{
updateDropdownsAfterFieldEnabled(1, target);
}
}
});
If productInput is not set to required, the breakpoint gets hit every time the list goes from having some value selected to having the blank line option selected. If it is set to required, the breakpoint never gets hit.
Is it possible to dynamically/AJAX-ishly change a Wicket form component if it's being validated with setRequired(true);? Here's a simple, if contrived, example to show what I mean:
Drive-through carwashes at gas stations usually often three or four levels of service. Each one includes everything provided by the lower levels and tacks on one more coat of wax or an extra rinse or something. UIs for the washes usually have four buttons with lights next to them (example). When a user presses one of the buttons, the corresponding light turns on, along with all the lights of the cheaper levels; the lights for nicer levels turn off. That behavior is modeled by this code:
boolean economy, standard, deluxe, ultimate = false;
CheckBox economyBox = new CheckBox("economyBox",
new PropertyModel<Boolean>(this, "economy"));
// Similar declarations for standardBox, deluxeBox and ultimatebox
OnChangeAjaxBehavior standardChangeListener = new OnChangeAjaxBehavior() {
protected void onUpdate(AjaxRequestTarget target)
{
// If "standard" is activated, also turn on the "economy" light
if (standard)
{
economy = true;
target.addComponent(economyBox);
}
// If "standard" is deactivated, deactivate "deluxe" and "ultimate"
else if (!standard)
{
deluxe = false;
ultimate = false;
target.addComponent(deluxeBox);
target.addComponent(ultimateBox);
}
}
};
standardBox.add(standardChangeListener);
// Similar listeners declared for the other three checkboxes
I've tested this code — well, the real code that this is a simplified version of — and it works as expected. But add in economyBox.setRequired(true); and the box stops updating dynamically. Is there a way to add validation without breaking the "linked checkbox" behavior?
