HI,
I just started using the treeview and have found a strange behaviour:
This is the markup:
This is the codebehind:
Surely, nothing fancy stuff. However, when displayed on the page when I expand nodes more than 2 levels deep, the page starts growing every time I hover over any node. I can see the scrollbar growing, my footer goes waaaaay down, etc.
Any idea why?
thanks
v
I just started using the treeview and have found a strange behaviour:
This is the markup:
<
telerik:RadTreeView
ID
=
"tvCategories"
runat
=
"server"
Skin
=
"Default"
Width
=
"200"
DataTextField
=
"Title"
DataFieldParentID
=
"ParentId"
DataFieldID
=
"Id"
>
</
telerik:RadTreeView
>
This is the codebehind:
protected
void
Page_Load(
object
sender, EventArgs e)
{
tvCategories.DataSource = common.GetProductCategories();
tvCategories.DataBind();
}
Surely, nothing fancy stuff. However, when displayed on the page when I expand nodes more than 2 levels deep, the page starts growing every time I hover over any node. I can see the scrollbar growing, my footer goes waaaaay down, etc.
Any idea why?
thanks
v