Overwrite controller "CRUD" to realize SaveAndShowListAction.

This commit is contained in:
Socrates
2020-06-10 23:42:07 +02:00
parent 2f16f8dcb5
commit ea75022ffc
4 changed files with 26 additions and 18 deletions

View File

@@ -21,9 +21,8 @@
</action>
</controller>
-->
<controller name="BabydatenbankDefaultController">
<extends controller="Typical" excluded-actions="new, save, refresh, delete" />
<controller name="CRUD">
<action name="new"
class="org.openxava.actions.NewAction"
image="new.gif"
@@ -53,6 +52,26 @@
icon="delete"
available-on-new="false"
keystroke="Control D"/>
<action name="searchByViewKey" hidden="true"
class="org.openxava.actions.SearchByViewKeyAction"/>
<action name="searchExecutingOnChange" hidden="true"
class="org.openxava.actions.SearchExecutingOnChangeAction"/>
<action name="searchReadOnly" hidden="true"
class="org.openxava.actions.SearchReadOnlyAction"/>
<action name="deleteSelected" mode="list" confirm="true"
process-selected-items="true"
image="delete.gif"
icon="delete"
class="org.openxava.actions.DeleteSelectedAction"
keystroke="Control D"/>
<action name="deleteRow" mode="NONE" confirm="true"
class="org.openxava.actions.DeleteSelectedAction"
image="delete.gif"
icon="delete"
in-each-row="true"/>
</controller>
</controllers>