You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Jochen Kemnade (JIRA)" <ji...@apache.org> on 2014/04/29 09:52:15 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=13984102#comment-13984102 ] 

Jochen Kemnade commented on TAP5-2245:
--------------------------------------

The submitted value is an Integer, the respective value in the model is a Long. We might just want to coerce the submitted value to the model value's type when checking for equality.

> 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.2#6252)