I have a RadTreeView in my user control (.ascx) like this:
It's been working fine but lately I notice when I click on the expand(+) button it take about more than 5 seconds to hit the break point I have on the 1st line of code in my handler(treeView_NodeExpand). What could be the culprit here? What is going on in between the click and hitting the break point?
<
telerik:RadTreeView
ID
=
"myTreeView"
CheckBoxes
=
"true"
PersistLoadOnDemandNodes
=
"true"
TriStateCheckBoxes
=
"true"
runat="server"
CheckChildNodes="true" CausesValidation="false"
OnNodeExpand="treeView_NodeExpand"
>
<
CollapseAnimation
Type
=
"OutQuint"
Duration
=
"100"
/>
<
ExpandAnimation
Duration
=
"100"
/>
</
telerik:RadTreeView
><
BR
>
It's been working fine but lately I notice when I click on the expand(+) button it take about more than 5 seconds to hit the break point I have on the 1st line of code in my handler(treeView_NodeExpand). What could be the culprit here? What is going on in between the click and hitting the break point?