This question is locked. New answers and comments are not allowed.
Hello,
I am using the treeview to display some data like the following:
<% string a = ...
string b = ...
string c = ... %>
<%= Html.Telerik().TreeView().Name("treeview").ExpandAll(true)
.Items(item => {
item.Add().Text(a).Items(
subItem => {
subItem.Add().Text(b);
subItem.Add().Text(c);
});})
%>
It works very well. Yet I notice if my mouse hovers or if I click on the item, the tree-item will be high-lighted as if it is selected.
I wonder if we can disable the hovering and high-light (when user clicks on the item)?
Many thanks!
I am using the treeview to display some data like the following:
<% string a = ...
string b = ...
string c = ... %>
<%= Html.Telerik().TreeView().Name("treeview").ExpandAll(true)
.Items(item => {
item.Add().Text(a).Items(
subItem => {
subItem.Add().Text(b);
subItem.Add().Text(c);
});})
%>
It works very well. Yet I notice if my mouse hovers or if I click on the item, the tree-item will be high-lighted as if it is selected.
I wonder if we can disable the hovering and high-light (when user clicks on the item)?
Many thanks!
