k/3cloud表格控件块粘贴代码逻辑

大家可以在表单插件EntityBlockPasting事件中自己处理,然后将cancel设置为true。以下代码可以参考一下,插件代码中需要将其中一些属性或方法修改,例如this.BusinessInfo替换为this.View.BusinessInfo,UpdateValue替换为this.View.Model.SetValue,this.StyleManager替换为((IDynamicFormView)this.View).StyleManager

        /// <summary>
        /// 块拷贝
        /// </summary>
        /// <param name="startKey"></param>
        /// <param name="startRow"></param>
        /// <param name="blockValue"></param>
        public void EntityBlockPasting(string startKey, int startRow, string blockValue)
        {
            if (!blockValue.IsNullOrEmptyOrWhiteSpace())
            {
                EntityBlockPastingEventArgs args = new EntityBlockPastingEventArgs(startKey, startRow, blockValue);
                this.EventsProxy.FireEntityBlockPasting(args);
                if (args.Cancel)
                {
                    return;
                }
                Field fd = this.BusinessInfo.GetField(startKey);
                if (fd == null) return;
                int entityRowCount = this.Model.GetEntryRowCount(fd.EntityKey);
                string[] rowValues = blockValue.Split('\n');
                int blockRowCount = rowValues.Length-1;
                if (blockRowCount > entityRowCount)
                {
                    // 当前实体行数不足,补齐行数据
                    for (int i = entityRowCount; i < blockRowCount; i++)
                    {
                        this.Model.CreateNewEntryRow(fd.EntityKey);
                    }
                }
                Dictionary<int, string> fieldKeyList = new Dictionary<int, string>();
                int row = startRow;
                foreach (string strValue in rowValues)
                {
                    if (strValue.IsNullOrEmpty())
                    {
                        // 最后空行结束
                        return;
                    }
                    string[] strs = strValue.Split('\t');
                    int fieldCount = strs.Length;
                    SetFieldKeyList(startKey, fd, fieldKeyList);
                    if (fieldKeyList.Count == 0)
                    {
                        // 可能找不到列,则返回
                        return;
                    }
                    int index = 0;
                    foreach (string str in strs)
                    {
                        string key = fieldKeyList[index];
                        // 未锁定状态下更新数据,锁定跳过
                        if (this.StyleManager.GetEnabled(this.LayoutInfo.GetFieldAppearance(key)))
                        {
                            this.UpdateValue(fieldKeyList[index], row, str);
                        }
                        index++;
                    }
                    row++;
                }
            }
        }
        private void SetFieldKeyList(string startKey, Field fd, Dictionary<int, string> fieldKeyList)
        {
            if (fieldKeyList.Count > 0)
            {
                return;
            }
            int start = 0;
            List<Field> fields = new List<Field>();
            fields.AddRange(fd.Entity.Fields);
            fields.Sort(new Comparison<Field>((x, y) =>
            {
                return x.Tabindex.CompareTo(y.Tabindex);
            }));
            foreach (Field f in fields)
            {
                if (startKey.EqualsIgnoreCase(f.Key))
                {
                    fieldKeyList[start++] = f.Key;
                    continue;
                }
                if (start > 0)
                {
                    // 可见的列才被用来粘贴
                    if (this.StyleManager.GetVisible(this.LayoutInfo.GetFieldAppearance(f.Key)))
                    {
                        fieldKeyList[start++] = f.Key;
                        continue;
                    }
                }
            }
        }


转载于:https://www.cnblogs.com/fyq891014/p/4188789.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值