动态设置模态框/页签标题
背景
目前平台可通过FormShowParameter 的caption属性来设置表单/页签/模态框的标题,作为补充,现在提供视图层接口setFormTitle来动态改变表单/页签/模态框的标题。
如下示例代码根据单据类型动态修改标题
@Override public void afterBindData(EventObject e) { BillTypeProp billTypeProp = (BillTypeProp) this.getModel().getProperty("billtypefield"); if (billTypeProp != null) { DynamicObject billtypefield = (DynamicObject) this.getModel().getValue("billtypefield"); this.getView().setFormTitle(new LocaleString("根据单据类型改动的标题" + billtypefield.get("name").toString())); } else { this.getView().setFormTitle(new LocaleString("afterBindData改动的标题")); } super.afterBindData(e); }
动态设置模态框/页签标题
背景目前平台可通过FormShowParameter 的caption属性来设置表单/页签/模态框的标题,作为补充,现在提供视图层接口setFormTitle来动态改变...
点击下载文档
本文2024-09-23 00:23:18发表“云苍穹知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-cangqiong-139144.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章