以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  IsNode 属性怎么设定?  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=124536)

--  作者:lur320
--  发布时间:2018/9/8 15:43:00
--  IsNode 属性怎么设定?
由于从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;

--  作者:有点蓝
--  发布时间:2018/9/8 15:48:00
--  
c1表格控件底层的用法请自行研究。我也没有研究过