1、非树状的,继承AbstractListPlugin
2、 ListView获取当前实体id
BillList list = this.getControl(BILLLISTID);
String billEntityId = list.getEntityId();
3、List获取当前选中行:ListSelectedRowCollection
BillList billList = this.getControl(BILLLISTID);
billList.getSelectedRows()
4、获取ListSelectedRow里的id
String pk = listSelectedRow.getPrimaryKeyValue().toString()
5、//获取listView是否选中数据
IListView listView = (IListView) getView();
boolean hasNoSelData = "focus".equals(this.getParameter().get("listDelScope"))? listView.getFocusRow() < 0 : listView.getSelectedRows().size() == 0;
6、//列表页面设置过滤条件 在initialize方法里设置
BillList list = this.getControl("billlistap");
ListShowParameter showParam = (ListShowParameter) this.getView().ge
BillList list = this.getControl(BILLLISTID);
String billEntityId = list.getEntityId();
3、List获取当前选中行:ListSelectedRowCollection
BillList billList = this.getControl(BILLLISTID);
billList.getSelectedRows()
4、获取ListSelectedRow里的id
String pk = listSelectedRow.getPrimaryKeyValue().toString()
5、//获取listView是否选中数据
IListView listView = (IListView) getView();
boolean hasNoSelData = "focus".equals(this.getParameter().get("listDelScope"))? listView.getFocusRow() < 0 : listView.getSelectedRows().size() == 0;
6、//列表页面设置过滤条件 在initialize方法里设置
BillList list = this.getControl("billlistap");
ListShowParameter showParam = (ListShowParameter) this.getView().ge