This is a migrated thread and some comments may be shown as answers.

ToolTip Calendar Problem

1 Answer 42 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Waqas
Top achievements
Rank 1
Waqas asked on 11 Jun 2013, 09:45 AM
i am using tooltip manager on rad calendar as described in
 http://demos.telerik.com/aspnet-ajax/tooltip/examples/tooltipcalendar/defaultcs.aspx?#

Now the Problem tool tip closes after a few seconds (before it can fetch the data to show)

i have tried increasing tool tip time out but that didn't work

(it is a part of java script function provided by Telerik in the demo)
setTimeout(function () {
                              tooltip.show();
                         }, 10000);

another problem is that i want to change the size of the toop tip, i am using a repeater that can hold multiple data to show in the toop tip.

1 Answer, 1 is accepted

Sort by
0
Viktor Tachev
Telerik team
answered on 14 Jun 2013, 10:13 AM
Hello,

The RadToolTip has a default delay after which it is automatically closed if the mouse cursor is positioned over the tooltipified element. You could modify that behavior with the AutoCloseDelay property. The default value is 3000 milliseconds. If you set the property to 0 the tooltip will not be closed after a delay. If this is done you would be able to close the tooltip only by opening another tooltip or calling the hide() method explicitly.

The setTimeout function is used to specify a delay before a function is executed not how long given function will be executed. If you need more information on setTimeout function you could check here.

The RadToolTip should automatically change its height so it would fit the data contained in it. You could set the width of the control and the height will be automatically adjusted.

I hope this information is helpful to you

Regards,
Viktor Tachev
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
Tags
Calendar
Asked by
Waqas
Top achievements
Rank 1
Answers by
Viktor Tachev
Telerik team
Share this question
or