public void actionObjectProp_actionPerformed(ActionEvent e)
          throws Exception {
     UIContext uiContext = new UIContext(this);
     uiContext.put("Owner", this);
     showDialog(BizObjPropForRoleUI.class.getName(), uiContext,
               OprtState.VIEW);
}
private IUIWindow showDialog(String strUI, Map map, String status)
          throws Exception {
     map.put("Owner", this);
     IUIFactory uiFactory = null;
     try {
          uiFactory = UIFactory
                     .createUIFactory("com.kingdee.eas.base.uiframe.client.UIModelDialogFactory");
          IUIWindow curDialog = uiFactory.create(strUI, map, null, status);
          curDialog.show();
          return curDialog;
     } catch (UIException ex1) {
          logger.error(ex1);
     }
     return null;
}

相关文章:

  • 2022-12-23
  • 2021-09-11
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2022-01-16
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2022-12-23
  • 2021-07-27
  • 2021-08-10
  • 2021-07-16
相关资源
相似解决方案