You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Massimo Lusetti (JIRA)" <ji...@apache.org> on 2014/11/06 15:23:34 UTC

[jira] [Resolved] (TAP5-2245) select component: selected option is not listed in the model.

     [ https://issues.apache.org/jira/browse/TAP5-2245?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Massimo Lusetti resolved TAP5-2245.
-----------------------------------
       Resolution: Cannot Reproduce
    Fix Version/s: 5.4

Feel free to reopen with a demo project to demonstrate. 

> select component: selected option is not listed in the model.
> -------------------------------------------------------------
>
>                 Key: TAP5-2245
>                 URL: https://issues.apache.org/jira/browse/TAP5-2245
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.4
>            Reporter: Sven Homburg
>            Assignee: Massimo Lusetti
>              Labels: regression
>             Fix For: 5.4
>
>         Attachments: ScreenDump.pdf
>
>
> @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."



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)