3.5.4.2.1. 列表组件操作

框架为实现了 ListComponent 接口的可视化组件(DataGridTableGroupTableTreeTableTree)提供了一组标准操作,这些操作在 com.haulmont.cuba.gui.actions.list 包中。

在表格中使用标准操作的示例:

  1. <groupTable id="customersTable" width="100%" dataContainer="customersDc">
  2. <actions>
  3. <action id="create" type="create"/>
  4. <action id="edit" type="edit"/>
  5. <action id="remove" type="remove"/>
  6. </actions>
  7. <columns>
  8. <column id="name"/>
  9. <column id="email"/>
  10. </columns>
  11. <buttonsPanel>
  12. <button id="createBtn" action="customersTable.create"/>
  13. <button id="editBtn" action="customersTable.edit"/>
  14. <button id="removeBtn" action="customersTable.remove"/>
  15. </buttonsPanel>
  16. </groupTable>

标准列表组件操作包括以下类型:

  • create - 类型由 com.haulmont.cuba.gui.actions.list.CreateAction 类实现。它被设计用于使用其默认编辑界面创建新实体。

  • edit - 类型由 com.haulmont.cuba.gui.actions.list.EditAction 类实现。它被设计用于使用其默认编辑界面编辑所选实体。

  • remove - 类型由 com.haulmont.cuba.gui.actions.list.RemoveAction 类实现。它被设计用于删除所选实体。

  • add - 类型由 com.haulmont.cuba.gui.actions.list.AddAction 类实现。它被设计用于从默认查找界面选取实体然后将其添加到关联的数据容器。这个操作典型的用例是用来为多对多集合添加实体。

  • exclude - 类型由 com.haulmont.cuba.gui.actions.list.ExcludeAction 类实现。它被设计用于从集合数据容器中删除实体但是不从数据库删除。这个操作典型的用例是从多对多集合中删除实体。

  • refresh - 类型由 com.haulmont.cuba.gui.actions.list.RefreshAction 类实现。它被设计用于重新加载列表组件使用的数据容器。

  • excel - 类型由 com.haulmont.cuba.gui.actions.list.ExcelAction 类实现。它被设计用于将列表组件内容输出到 XLS 文件。

标准操作为基本参数(题、图标和快捷键)提供默认值以及执行时的默认行为。可以在 XML 中为基本参数提供自己的值,就像其它任何操作一样。例如,可以指定自定义图标:

  1. <action id="create" type="create" icon="USER"/>

要自定义执行行为,应该订阅操作的 ActionPerformedEvent。如果提供了自己的操作监听器,则所有标准操作都不会执行。这意味着 自定义的 ActionPerformedEvent 处理器已经覆盖了默认的操作行为。

例如,以下代码将覆盖默认的 create 操作行为,以使用以模式对话框打开的特定界面创建 Customer 实体:

  1. public class CustomerBrowse extends StandardLookup<Customer> {
  2. @Inject
  3. private GroupTable<Customer> customersTable;
  4. @Inject
  5. private ScreenBuilders screenBuilders;
  6. @Subscribe("customersTable.create")
  7. protected void onCustomersTableCreateActionPerformed(Action.ActionPerformedEvent event) {
  8. screenBuilders.editor(customersTable)
  9. .newEntity()
  10. .withScreenClass(CustomerEdit.class) // specific editor screen
  11. .withLaunchMode(OpenMode.DIALOG) // open as modal dialog
  12. .build()
  13. .show();
  14. }
  15. }

跟自定义 create 一样,可以对 edit 的行为进行定制。对有关更多详细信息,请参阅 ScreenBuilders bean 描述.

add 行为使用的是 ScreenBuilders bean,所以可以按照下面的方式进行定制:

  1. public class CustomerEdit extends StandardEditor<Customer> {
  2. @Inject
  3. private ScreenBuilders screenBuilders;
  4. @Inject
  5. private Table<Employee> accountableTable;
  6. @Subscribe("accountableTable.add")
  7. protected void onAccountableTableAddActionPerformed(Action.ActionPerformedEvent event) {
  8. screenBuilders.lookup(Employee.class, this)
  9. .withListComponent(accountableTable)
  10. .withScreenClass(EmployeeBrowse.class) // specific editor screen
  11. .withLaunchMode(OpenMode.DIALOG) // open as modal dialog
  12. .build()
  13. .show();
  14. }
  15. }