Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Cannot Reproduce
-
5.4
Description
@Component
private Zone previewZone;
@Component(parameters =
{"value=previewMonth", "model=[1,3,6]", "zone=previewZone"})
private Select previewSelect;
@OnEvent(component = "previewSelect", value = EventConstants.VALUE_CHANGED)
void onValueChangedFromPreviewSelect(long result)
{
if (selectedDate == null)
selectedDate = LocalDate.now();
selectedDate = selectedDate.plusMonths((int) (result - 1));
ajaxResponseRenderer.addRender("previewZone", previewZone);
}
After selecting a value in select component the following error message
occoures:
"Selected option is not listed in the model."
Attachments
Attachments
Issue Links
- is broken by
-
TAP5-2179 The Select component can be hacked to select a value not in the SelectModel
- Closed