移动单据录入框隐藏
金蝶云社区-exoplanet_
exoplanet_
0人赞赏了该文章 683次浏览 未经作者许可,禁止转载编辑于2018年07月18日 16:32:04

金蝶云7.1+4月份补丁
在移动做了开发,添加了自定义字段对该字段进行隐藏。但是隐藏了录入的地方,前面的文字描述没有隐藏。
截图和代码如下,求大神解答!
public override void AfterBindData(EventArgs e)
{
//隐藏
this.View.GetControl("F_Paez_ProcessNode").Visible = false;
this.View.GetControl("F_PAEZ_ProcessNode1").Visible = false;
this.View.GetControl("F_PAEZ_ProcessNode2").Visible = false;
this.View.GetControl("F_PAEZ_ProcessNode3").Visible = false;
this.View.GetControl("F_PAEZ_ProcessNode4").Visible = false;
this.View.GetControl("F_PAEZ_ProcessNode5").Visible = false;
}