Foxtable(狐表)用户栏目专家坐堂 → C1FlexGrid 插入节点问题


  共有2414人关注过本帖树形打印复制链接

主题:C1FlexGrid 插入节点问题

帅哥哟,离线,有人找我吗?
有点色
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:13837 积分:69650 威望:0 精华:0 注册:2016/11/1 14:42:00
  发帖心情 Post By:2017/6/9 12:26:00 [显示全部帖子]

Dim RowBase As C1FlexGrid.Row = args(0).Row
Dim Node As C1FlexGrid.Node
node=RowBase.Node
For Each dr As DataRow In DataTables("test2").Select("父级号='" & node.Row("子级号") & "'")
    
    Dim nNode = TblBase.Rows.InsertNode(tblbase.Rows.count, RowBase.Node.Level + 1)
    For Each c As Col In Tables("t").Cols
        nNode.Row(c.name) = dr(c.name)
    Next
    Functions.Execute("loop", nnode)
   
Next

 回到顶部