Hello
I wonder how I can append a treeview item WITH an id? I tried it in two ways:
var treeview = $("#treeview2").data("kendoTreeView");
treeview.append({
text: 'mytext',
id: 'should work', // option1
attr: { // option 2
id: 'works on menu'
}
}, $('#treenode1'));
Text will always be shown, but ID will never be attached, neither defined directly as ID (option1), nor over ATTR as show above by option 2 (but that works in KendoUI menu).
Do I miss something or is it not possible that way?
Regards