由于从SQL调取行后,要进行很多编辑,不能使用flex.rows.insertnode来按照顺序插入列。
请问如果在行编辑完毕后,使用Isnode属性来设定为node?
To obtain a Node object, you can either:
Use the return value of the Rows.InsertNode method:
var node = _flex.Rows.InsertNode(index, level);
Or you can retrieve the node for an existing row using the row's Node property:
var node = _flex.Rows[index].IsNode
? _flex.Rows[index].Node
: null;