[ https://issues.apache.org/jira/browse/ISIS-3201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17608081#comment-17608081 ]
ASF subversion and git services commented on ISIS-3201: ------------------------------------------------------- Commit 0dc31f9d457144f46aae0544434d947b66b2a2ff in isis's branch refs/heads/master from Andi Huber [ https://gitbox.apache.org/repos/asf?p=isis.git;h=0dc31f9d45 ] ISIS-3201: time picker on change propagation fixes > [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)