[ https://issues.apache.org/jira/browse/ISIS-3201?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17608083#comment-17608083 ]
ASF subversion and git services commented on ISIS-3201: ------------------------------------------------------- Commit 3a0fea9f73bfe1582d39f6cbe1d4cc51c2392592 in isis's branch refs/heads/master from Andi Huber [ https://gitbox.apache.org/repos/asf?p=isis.git;h=3a0fea9f73 ] ISIS-3201: remove superfluous null guard > [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)