各位,
用语句写动态数据窗口时,怎么将某列设置成单选框
dw_1.modify("a.Edit.Case='any'")
dw_1.modify("a.checkbox.on=1")
dw_1.modify("a.checkbox.off=0")
dw_1.modify("a.checkbox.scale=no")
dw_1.modify("a.checkbox.threed=yes")
用如上语句后,能出现单选框,但不能编辑,怎么处理啊
------解决方案--------------------
查一下taborder的值是多少
------解决方案--------------------
------解决方案--------------------
我看了下帮助,帮助是这样说的
Off A string constant specifying the column value when the CheckBox is off (unchecked). The resulting value must be the same data type as the columnPainter: Data Value for Off optionOn A string constant specifying the value that will be put in the column when the CheckBox is on (checked). The resulting value must be the same data type as the columnPainter: Data Value for On option
------解决方案--------------------
dw_1.SetTabOrder('A', 10)
------解决方案--------------------