- 积分
- 0
- 在线时间
- 2 小时
- 主题
- 2
- 注册时间
- 2017-11-14
- 帖子
- 6
- 最后登录
- 2017-11-17
- 帖子
- 6
- 软币
- 98
- 在线时间
- 2 小时
- 注册时间
- 2017-11-14
|
本帖最后由 Church 于 2017-11-15 13:39 编辑
最近在尝试对Dev表格进行封装,在封装单元格是否可编辑的时候,出现问题,我尝试过一下几种方式1. 设置
GridView.OptionsBehavior.Editable = True
GridView.OptionsBehavior.ReadOnly = False
之后 表格整体设置为可编辑 ,然后对个别列进行不可编辑设置
GridView.Columns(devColField).OptionsColumn.AllowEdit = True
出现了冲突
冲突描述:The manager cannot be created for the mask of Custom type. Specify another type of mask or implement the TextEdit.CreateManager method.
2.不做整体设置,只设置
GridView.Columns(devColField).OptionsColumn.AllowEdit = False
不能实现效果
这个问题一直没解决的原因,不是因为单元格编辑没有设置对,而是其他原因ORZ!!
|
|