【常见问题】移动单据列表如何启用多选?
1)移动单据列表中,点击某个底部菜单启用多选
public override void ButtonClick(ButtonClickEventArgs e)
{
if(e.Key == "FBatch") //点击批量处理按钮
{
this.View.GetControl<MobileListViewControl>("FList").SetCustomPropertyValue("MobileListIsShowCheckBox", true);
this.View.UpdateView("FList");
}
}
2)弹出是启用多选
MobileListShowParameter paramDy = new MobileListShowParameter();
paramDy.FormId = "MOB_MyBillList"; //移动单据唯一标识
paramDy.CustomParams.Add("IsMultiSelect", "true"); //是否多选
this.View.ShowForm(paramDy);
2、移动列表选中行
var selectedRows = this.View.SelectedRowsInfo;
【常见问题】移动单据列表如何启用多选?
1)移动单据列表中,点击某个底部菜单启用多选public override void ButtonClick(ButtonClickEventArgs e) { if...
点击下载文档
本文2024-09-23 04:15:11发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-164109.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章