列表界面添加过滤行
1,426次浏览
编辑于2015年06月05日 14:41:46
能否在单据的列表界面添加过滤行?
效果类似于,单据体的过滤行那种呢 ,就像如下代码一样
public override void CreateControl(CreateControlEventArgs e)
{
if (e.ControlAppearance.Key == "FEntity") //单据体KEY
{
e.Control.Put("showFilterRow", true);
}
base.CreateControl(e);
}
推荐阅读