Re: XML Editor only hyperlink last action mapping (2021-03-31 12:14 by Sergio7 #87252)
Reply To Message #70263
> Let say in 1 xml file I have several action mapping like below:
>
>
> <action path="/test/getDateDuration_AjaxAction"
> type="project.test.view.GetDuration_AjaxActionAction"
> validate="false">
> </action>
>
> <action path="/test/getSemesterList_AjaxActionAction"
> type="project.test.view.GetMonth_AjaxActionAction"
> validate="false">
> </action>
>
>
> Only the last action mapping (project.test.view.GetMonth_AjaxActionAction) can hyperlink (CTRL+Click). If I change the order to:
>
>
> <action path="/test/getSemesterList_AjaxActionAction"
> type="project.test.view.GetMonth_AjaxActionAction"
> validate="false">
> </action>
>
>
> <action path="/test/getDateDuration_AjaxAction"
> type="project.test.view.GetDuration_AjaxActionAction"
> validate="false">
> </action>
>
>
> The "project.test.view.GetDuration_AjaxActionAction" can hyperlink but the "project.test.view.GetMonth_AjaxActionAction" can't.
>
> How to solve this?