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