仓位组合值选择界面怎么显示快捷过滤条的保存按钮原创
金蝶云社区-null
null
11人赞赏了该文章 246次浏览 未经作者许可,禁止转载编辑于2023年07月07日 15:03:21

可以为值集资料维度数据表单注册列表python插件,设置保存菜单条可见


import clr 
clr.AddReference('System') 
clr.AddReference('Kingdee.BOS.Core') 
from Kingdee.BOS.Core.DynamicForm import * 

def AfterBindData(e):      
  this.View.GetControl("FQKFILTERPANEL").SetCustomPropertyValue("VisibleSave", True)      
  this.View.GetControl("FQKFILTERPANEL").SetCustomPropertyValue("VisibleClearScheme", True)



赞 11