二开案例.表单插件.设置标签标题
【应用场景】
设置标签标题。
【案例演示】
采购订单,新增标签控件,显示明细信息单据体总行数和选中行数。
【实现步骤】
<1>编写表单插件,代码如下。
using Kingdee.BOS.Core.DynamicForm.PlugIn; using Kingdee.BOS.Core.DynamicForm.PlugIn.Args; using Kingdee.BOS.Core.DynamicForm.PlugIn.ControlModel; using Kingdee.BOS.Util; using System.ComponentModel; namespace Jac.XkDemo.BOS.Business.PlugIn { /// <summary> /// 【表单插件】设置标签标题 /// </summary> [Description("【表单插件】设置标签标题"), HotUpdate] public class SetLabelTextFormPlugIn : AbstractDynamicFormPlugIn { public override void EntityRowClick(EntityRowClickEventArgs e) { base.EntityRowClick(e); if (e.Key.EqualsIgnoreCase("FPOOrderEntry")) { // 获取单据体总行数 var rowCount = this.Model.GetEntryRowCount(e.Key); // 获取单据体选中行 var grid = this.View.GetControl<EntryGrid>(e.Key); var selectedRowCount = grid.GetSelectedRows().Length; var msg = string.Format("{0}总行数:{1},选中行数:{2}", this.View.BillBusinessInfo.GetEntity(e.Key).Name, rowCount, selectedRowCount); // 设置标签标题 this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("Text", msg); // 设置标签标题前景色 this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("ForeColor", "#ff0000"); // 设置标签标题背景色 //this.View.GetControl("F_Jac_Lable").SetCustomPropertyValue("BackColor", "#ead1dc"); } } } }
<2>拷贝插件组件到应用站点的WebSite\Bin目录下,重启IIS。
<3>BOSIDE扩展采购订单,新增标签控件,并拖放到页签控件附近,注册表单插件,保存元数据,开发完毕。
【功能验证】
<1>登录业务站点,打开采购订单新增界面,选中明细信息单据体数据行,效果如下图。
---------------------------------------------------------------------------------------------------------
【金蝶云星空BOS二次开发案例演示】https://vip.kingdee.com/article/94751030918525696
二开案例.表单插件.设置标签标题
【应用场景】设置标签标题。【案例演示】采购订单,新增标签控件,显示明细信息单据体总行数和选中行数。【实现步骤】<1>编写表单插件,代...
点击下载文档
本文2024-09-23 04:00:14发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-162482.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章