1.
http://demos.telerik.com/aspnet-ajax/tooltip/examples/loadondemand/defaultcs.aspx
While the content is being loaded, the right border is invisible.
2.
If a delay occurs while the content is being loaded, and the user move the mouse to another product, the load image doesnt appears.
You can reproduce it by doing something like this:
protected void OnAjaxUpdate(object sender, ToolTipUpdateEventArgs args)
{
UpdateToolTip(args.UpdatePanel);
}
private void UpdateToolTip(UpdatePanel updatePanel)
{
Label label = new Label();
label.Text = "aaaaa";
System.Threading.Thread.Sleep(3000);
updatePanel.ContentTemplateContainer.Controls.Add(label);
}
PS: How can I use the format code block?
| function OnClientTabSelected(tabstrip, args) { |
| var multiPage = $find("<%=mp.ClientID %>"); |
| var tab = args.get_tab(); |
| var editor = getEditor(); // defined in ascx control |
| switch (tab.get_index()) { |
| case 0: |
| showHTML(tab, multiPage, editor); |
| break; |
| case 1: |
| showText(tab, multiPage, editor); |
| break; |
| case 2: |
| showSource(tab, multiPage, editor); |
| break; |
| } |
| } |
| function showHTML(tab, multiPage, editor) { |
| editor.set_mode(1); |
| showEditorToolbar(true); |
| if (multiPage.get_selectedIndex() != 0) |
| multiPage.set_selectedIndex(0); |
| } |
| function showText(tab, multiPage, editor) { |
| editor.set_mode(2); |
| //OnClientModeChange(editor); |
| showEditorToolbar(true); |
| if (multiPage.get_selectedIndex() != 0) |
| multiPage.set_selectedIndex(1); |
| //multiPage.set_selectedIndex(tab.get_index()); |
| } |

| function CloseMe() |
| {<br/> |
| var oWindow = GetRadWindow(); |
| oWindow.argument = 1; |
| oWindow.close(); |
| } |
We recently updated the Telerik controls on our development server.
What happens on development with this code is that the window does close, but not until after it flashes up a page that says "Navigation to the Webpage has been Cancelled". On our Production server, which hasn't been updated, it doesn't do that. It just shows the loading panel before it closes.
I have tried just about all I can think of to remedy this on my end. I believe it is something happening differently with the IFRAME in the RAD Window or the RAD Panel in the most recent update.
Anyone have any suggestions?