带有自定义json数据的Angular JsTree

时间:2017-11-16 10:48:32

标签: angularjs jstree

我想在ngJsTree的节点中添加自定义iconsubtext,就像此示例一样。

enter image description here

{
    'id': 1,
    'text': 'a text',
    'icon': "icon",
    'icon2': 'newIcon',
    'subtext': 'new text'
}

我该怎么做?

1 个答案:

答案 0 :(得分:0)

您可以使用{ 'id': 1, 'text': 'a text', 'icon': 'icon', 'li_attr': {'icon2': 'newIncon', 'subtext': 'new text'} } 节点属性添加自定义数据,它对我有用。它还可以在拖放节点时保留自定义数据。

在您的情况下,您的节点将是:

df.Date2 = df.Date1.str[:].values + df.Date2.str[10:].values

问候。