列表与单据体多选模式
一、移动单据列表
1、启用多选
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、启用多选
2、获取勾选分录行
var selRows = this.View.GetControl<MobileListViewControl>("FMyEntity").GetSelectedRows();
FMyEntity 为单据体(移动列表)的唯一标识
3、设置勾选分录行
this.View.GetControl<MobileListViewControl>("FMyEntity").SetSelectRows(new int[] { selRow }); this.View.UpdateView("FHandlerEntity");
FMyEntity 为单据体(移动列表)的唯一标识
列表与单据体多选模式
一、移动单据列表1、启用多选1)移动单据列表中,点击某个底部菜单启用多选public override void ButtonClick(ButtonClickEventArgs e) ...
点击下载文档
本文2024-09-23 04:07:37发表“云星空知识”栏目。
本文链接:https://wenku.my7c.com/article/kingdee-k3cloud-163302.html
您需要登录后才可以发表评论, 登录登录 或者 注册
最新文档
热门文章