Hi,
I have created the dash board page, using telerik charts
Telerik version : RadControls for ASPNET AJAX Q1 2008
and visual studio 2008 / sqlserver.
I have 10 user controls having charts.
In the dash board page I am creating the zones and dock controls runtime and inside dock
control, binding the user controls.
Now when i moved to the dash board page it calls all the 10 stored proc to bind the charts
which is in usercontrol one by one and display the dashboard page simultaneously.
What i want is to call all the 10 stored proc simultaneously and display that one by one as
loaded.
Like igogle they load the dashboard page and uses the loading image to the items which takes
time to load.
can any body help me.


Good Day,
I have been attempting to implement the RadTreeView with a Context Menu. When I implement the Context Menu, I get a javascript error. (_onSubmitStatementError is null or undefined)
If I switched my "ScriptManager.EnablePartialRendering = false" as per the following forum entry. (http://www.telerik.com/community/forums/thread/b311D-bdkeam.aspx) However, if there is another technology installed to the page that enables the script manager for me, versus me doing so, then the EnablePartialRenderingis set to true, and then the error returns.
I need some way to work around the EnablePartialRendering as I can't guarantee that I can control it.
Thank you.
If it helps here is the code I use to setup the menu.
RadMenuItem menuItem = new RadMenuItem();
myContextMenu.ID =
"contextMenu1";
menuItem.Text =
"show me a menu";
myContextMenu.Items.Add(menuItem);
MyRadTree.ContextMenus.Add(myContextMenu);
This occurs after the CreateChild Controls (Control.Add(RadTreeView)) is completed. The tree is populated before the above code is executed, however I have tried to enable this before as well.
Not all nodes are enabled to support context menu through the (EnableContextMenu).
No ID is specified in the node for the contextmenuid to run so it should run the first one, however, I have tried assigning one to them as well.
| <telerik:RadComboBox ID="Entity" runat="server" MarkFirstMatch="true" Width="50px" |
| TabIndex="1" AutoPostBack="false" DropDownWidth="70px" MaxLength="1" |
| EnableLoadOnDemand="false" |
| Height="50px" AllowCustomText="false" ShowMoreResultsBox="False" |
| HighlightTemplatedItems="true"> |
| <ItemTemplate> |
| <div> |
| <%#DataBinder.Eval(Container, "Text")%> |
| </div> |
| </ItemTemplate> |
| <Items> |
| <telerik:RadComboBoxItem runat="server" Text="Fish" Value="F" /> |
| <telerik:RadComboBoxItem runat="server" Text="Water" Value="W" /> |
| </Items> |
| </telerik:RadComboBox> |