[ https://issues.apache.org/jira/browse/ISIS-3201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17608221#comment-17608221 ]
ASF subversion and git services commented on ISIS-3201: ------------------------------------------------------- Commit b0f687c1a80f4a0dbeaf8968850edd4741f19c02 in isis's branch refs/heads/master from Andi Huber [ https://gitbox.apache.org/repos/asf?p=isis.git;h=b0f687c1a8 ] ISIS-3201: fixes regression in commit 'consolidate choice panel factories' https://github.com/apache/isis/commit/8baaea61f2cced8cb97679d607f67c0a7db28d54 > [Wicket Viewer] Default methods not triggered after changing a date parameter > with date picker > ---------------------------------------------------------------------------------------------- > > Key: ISIS-3201 > URL: https://issues.apache.org/jira/browse/ISIS-3201 > Project: Isis > Issue Type: Bug > Components: Isis Viewer Wicket > Affects Versions: 2.0.0-M7 > Reporter: Zermelo > Assignee: Andi Huber > Priority: Blocker > Fix For: 2.0.0-M8 > > Attachments: ActionDateParameter.mov > > > {code:java} > import lombok.RequiredArgsConstructor; > import org.apache.isis.applib.annotation.Action; > import org.apache.isis.applib.annotation.ActionLayout; > import org.apache.isis.applib.annotation.MinLength; > import org.apache.isis.applib.annotation.PromptStyle; > import org.apache.isis.applib.services.repository.RepositoryService; > import javax.inject.Inject; > import java.time.LocalDate; > import java.util.List; > @Action > @ActionLayout(promptStyle = PromptStyle.DIALOG_MODAL) > @RequiredArgsConstructor(onConstructor_ = {@Inject}) > public class Isis3201Demo { > public final Object target; > public Object act( > LocalDate aDate, String dependent) { > return target; > } > public String default1Act(LocalDate aDate) { > return "Current value of date parameter:" + aDate; > } > } > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)