super(id, model, attribute, fieldValidationValidator);
}
@Override
protected ModelFacade<Boolean> createFormComponent(AttributeDefinition attribute, IModel<String> model) {
CheckBox check = new CheckBox("field", new BoolToStringModel(model));
ModelFacade<Boolean> retVal = new ModelFacade<Boolean>();
retVal.setMainComponent(check);
return retVal;
}