简单账表,如何关闭表头的排序功能
7人赞赏了该文章
1,568次浏览
编辑于2018年07月27日 11:19:18
需要在插件里面将其关闭。
using Kingdee.BOS.Core.Const;
using Kingdee.BOS.Core.DynamicForm.PlugIn.Args;
using Kingdee.BOS.Core.DynamicForm.PlugIn.ControlModel;
using Kingdee.BOS.Core.NotePrint;
using Kingdee.BOS.JSON;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TestPrintPlugin
{
public class TestReportView : Kingdee.BOS.Core.Report.PlugIn.AbstractSysReportPlugIn
{
public override void AfterBindData(EventArgs e)
{
base.AfterBindData(e);
EntryGrid listGrid = this.View.GetControl<EntryGrid>("FList");
listGrid.SetCustomPropertyValue("AllowSorting", false);
}
}
}
复制代码
赞 7
7人点赞
还没有人点赞,快来当第一个点赞的人吧!
打赏
0人打赏
还没有人打赏,快来当第一个打赏的人吧!
推荐阅读