I am adding items on client with url parameter set:
var item = this.links.append({ text: text, url: url }, parent);
//http://docs.telerik.com/kendo-ui/api/javascript/ui/treeview#methods-append
The generated code is:
<
li
role
=
"treeitem"
class
=
"k-item"
data-uid
=
"64c022e1-c7c4-470e-8dab-a5f821290894"
aria-selected
=
"false "
id
=
"menuitems-admin_management_database"
>
<
div
class
=
"k-top"
>
<
a
class
=
"k-in k-state-focused"
href
=
"#!/admin/management/database"
>Database</
a
>
</
div
>
</
li
>
I would expect that k-link class is also added to the a tag, otherwise this happens.(On some themes text is not visible)