Telerik Forums
UI for ASP.NET AJAX Forum
10 answers
157 views
Hi,

I am trying to use tooltip with its content loaded dynamically (on demand), but the tooltip always gets cropped. After much investigation I found that this is due to a delay in page load event. I have managed to reproduce the issue simply by using Thread.Sleep placed in page Load event handler. Somewhere between 80 to 90 milliseconds is where the problem starts to appear. Below 80ms everything is good. When the tooptip gets cropped, what we see on screen is only the top part of the tooltip like about 10 pixels high, the rest looks like it is clipped. Please can anyone spot wherer I have gone wrong? or is this a bug? If it is when can I expect to have it fixed please? Is there a work around?  Thank you.

This is my aspx code:
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default3.aspx.vb" Inherits="TEST_Default" %>
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
 
</head>
<body>
    <form id="form1" runat="server">
        <telerik:RadScriptManager ID="RadScriptManager1" Runat="server"></telerik:RadScriptManager>
        <telerik:RadToolTipManager runat="server" ID="RadToolTipManager1" Position="BottomRight"
            RelativeTo="Mouse" Animation="Resize" HideEvent="LeaveTargetAndToolTip" Skin="WebBlue">
            <TargetControls>
                <telerik:ToolTipTargetControl TargetControlID="viewAgentLink" />
            </TargetControls>
        </telerik:RadToolTipManager>
        <telerik:RadAjaxLoadingPanel runat="server" ID="LoadingPanel1" CssClass="RadAjax" Transparency="60">
		<div class="raDiv"></div>
		<div class="raColor raTransp"></div>
	</telerik:RadAjaxLoadingPanel>
 
 
	    <asp:Label ID="viewAgentLink" runat="server" CssClass="agentLink">view agent details</asp:Label>
 
    </form>
</body>
</html>


Here is my code behind file:
Imports Telerik.Web.UI
 
Partial Class TEST_Default
    Inherits System.Web.UI.Page
 
    Protected Sub Page_Load(ByVal sender As ObjectByVal e As System.EventArgs) Handles Me.Load
        System.Threading.Thread.Sleep(100)
    End Sub
 
    Protected Sub RadToolTipManager1_AjaxUpdate(ByVal sender As ObjectByVal e As Telerik.Web.UI.ToolTipUpdateEventArgs) Handles RadToolTipManager1.AjaxUpdate
        If e.TargetControlID = "viewAgentLink" Then
            Dim contentCtrl As Control = Page.LoadControl("AgentDetailsControl.ascx")
            e.UpdatePanel.ContentTemplateContainer.Controls.Add(contentCtrl)
            CType(sender, RadToolTipManager).Title = "Agent Details"
        End If
    End Sub
 
End Class



PS: I have not included the usercontrol file/code, but you can use any user control with Lorem Ipsum text in it.

Kurniadi
Top achievements
Rank 1
 answered on 28 Jul 2011
1 answer
55 views
hi,

I am tring your sample and I think something not workink their.
go please to http://demos.telerik.com/aspnet-ajax/grid/examples/programming/accessingcellsandrows/defaultcs.aspx

the problem:

1) push the edit button for one row.
2) change the "Quantities in stock" to other number (not the default one) in the combo.
3)go with the mouse to other text box(Ship name), you will see that the combo you just changed in step 2, changed again to the default number.


thanks

Udi
Marin
Telerik team
 answered on 28 Jul 2011
6 answers
91 views
Hello,

I''m using RadUpload in a UserControl. It works fine until I add a RadCombobox in the UserControl (see attached images). The control isn't rendered right.
Someone any idea?

Regards,
  Jos Meerkerk
RvdGrint
Top achievements
Rank 1
 answered on 28 Jul 2011
6 answers
225 views
I have genrate key for my sitefinity license and i have giiven wrong domain name there.


How could i update that.
Grisha 'Greg' Karanikolov
Telerik team
 answered on 28 Jul 2011
1 answer
108 views

I am using an Ajax-enabled RadCalendar.  The calendar is using SpecialDays to identify event dates on the calendar, and I am dynamically assigning the special days based on values I pull from my database when the control loads. All of this works as expected, and I see the desired css-decoration of the event dates.  However, I also give my user the option of changing his location via a drop-down.  When the user chooses a new location, the SelectedIndexChanged event is fired, and the database is re-queried for a new list of event dates. 

I am trying to use this new list of event dates to re-build the SpecialDays list.  And, in fact, I am able to clear the current SpecialDays list, and populate it with the new dates.  However, I can’t get the new SpecialDays to display without refreshing the entire page.   How do I code this control so that the new SpecialDays list will display without doing a refresh?

I am new to posting in your forums, so I am not sure what additional information you may need.  Let me know if you need any additional information.

Thanks in advance!

Pavlina
Telerik team
 answered on 28 Jul 2011
1 answer
147 views
Hi,

   I have the following script
       

function DateSelectedFirstPref(sender, args) {         

                 if (!isTimeSelected) {

                     var val = "08:00:00";

                     var dateString = sender._dateInput._initialValue;

                     var month = dateString.split("/")[0];

                     var day = dateString.split("/")[1];

                     var yearTime = dateString.split("/")[2];

                     var year = yearTime.split(" ")[0];            

                      sender.set_selectedDate(new Date(year, month, day, val.split(":")[0], val.split(":")[1], val.split(":")[2], 0));                      

                

                 }

            }


When i select a date from datetime picker, it is not showing any date and time,the raddatetime picker's textbox is empty.
Please help me on this issue.
Maria Ilieva
Telerik team
 answered on 28 Jul 2011
3 answers
257 views
Hi all,
I've read some threads, the RadControlsAjaxCourseware.pdf and check the demos but did not find what I need: I have a master page (vb.net 2010 4.0) with content pages and user controls. In one of the user controls I have a RadGrid. There I added RadAjaxLoadingPanel (using v2010.3.1109.40). This works quite well, but it only blocks the grid so the user is able to use the other controls on the page. How could I set RadAjaxLoadingPanel to block the whole page? It's not necessary to Ajax-enable the whole Masterpage.
Thanks!
Kai
Top achievements
Rank 2
 answered on 28 Jul 2011
11 answers
464 views
Hi,

Is it possible to move the footer to the top of the grid ?
At the moment, users are having to scroll down to the bottom of the grid to see footers. It would be better if the footer row was at the top of the grid.

Thanks
Mark
Jean-Yves
Top achievements
Rank 1
 answered on 28 Jul 2011
1 answer
109 views
I have a situation where I am using a RadWindow to open up a form that allows adding/removing items from a datasource. When the window closes I would like to refresh the list (built from that datasource that the window allows the user to edit) which is the databound source for a combobox. I can fire a javascript method when the window closes, but I can't seem to get code to work that will refresh the combobox.
Shinu
Top achievements
Rank 2
 answered on 28 Jul 2011
3 answers
132 views
We installed the RadEditor lite on WSS 3.0 following the instructions on this site. No problems occurred. I see the two features on a site and activating the features goes OK too. Unfortunately when I'm using editing a page in a wiki site I do'nt get the RadEditor but only the standard editor. No error messages what so ever but no RadEditor either. Any suggestions on how to find out what is happening?

We are using Windows Server 2003 standard edition SP 1
Stanimir
Telerik team
 answered on 28 Jul 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Jesse
Top achievements
Rank 2
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?