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/04 10:54:33 UTC

[jira] [Commented] (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:comment-tabpanel&focusedCommentId=14195964#comment-14195964 ] 

Massimo Lusetti commented on TAP5-2245:
---------------------------------------

I've had a similar case in a recent app using beta-22 and it seems it's working right.

Does anyone confirm this still valid issue?

> 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
>              Labels: regression
>         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)