Good morning !
We are using a treeview for our Web Application.
This treeview is created from SQL requests.
On first load, I only load "visible" nodes (treeview is not expanded by default).
For example I load 3500 nodes (objects). And when the user expands a node, I call a new SQL request in order to display childs...
The matter is that sometimes, SQL request are a little important, and after around 1 minute the treeview timeout !
I have this error : Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
Here is the definition of the treeview :
Can you please tell me how to avoid this timeout ?
Thanks and have a good day
We are using a treeview for our Web Application.
This treeview is created from SQL requests.
On first load, I only load "visible" nodes (treeview is not expanded by default).
For example I load 3500 nodes (objects). And when the user expands a node, I call a new SQL request in order to display childs...
The matter is that sometimes, SQL request are a little important, and after around 1 minute the treeview timeout !
I have this error : Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out.
Here is the definition of the treeview :
<telerik:RadTreeView ID="radTreeView" runat="server" CheckBoxes="True" CheckChildNodes="True" Height="200px" MultipleSelect="True" OnNodeCheck="radTreeView_NodeCheck" OnNodeExpand="radTreeView_NodeExpand" OnPreRender="radTreeView_PreRender" Skin="WebBlue" TriStateCheckBoxes="True" OnNodeClick="radTreeView_NodeClick" Width="100%" meta:resourcekey="radTreeViewResource1"> </telerik:RadTreeView>Can you please tell me how to avoid this timeout ?
Thanks and have a good day