我想在ngJsTree的节点中添加自定义icon
和subtext
,就像此示例一样。
{
'id': 1,
'text': 'a text',
'icon': "icon",
'icon2': 'newIcon',
'subtext': 'new text'
}
我该怎么做?
答案 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
问候。