移动表单上添加了移动列表,无法填写移动列表上的字段
金蝶云社区-JasonWang
JasonWang
0人赞赏了该文章 1,151次浏览 未经作者许可,禁止转载编辑于2017年01月13日 15:49:12

已经编写了代码,控制列表可用,但是还是不行,请问还需要设置什么别的吗?
public class CLYHTest : AbstractMobilePlugin
{
public override void AfterBindData(EventArgs e)
{
base.AfterBindData(e);
//设置列表是可编辑的
this.View.GetControl("FMobileListViewEntity").SetCustomPropertyValue("listEditable", true);
//设置完要刷新下列表
this.View.UpdateView("FMobileListViewEntity");
}
}