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

Remove cell tooltip shown in datepicker

7 Answers 378 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Tina
Top achievements
Rank 1
Tina asked on 14 Jun 2012, 05:37 PM
How to remove cell tooltip shown in datepicker which is shown by default?

7 Answers, 1 is accepted

Sort by
0
Pavlina
Telerik team
answered on 14 Jun 2012, 05:58 PM
Hello Tina,

To remove the DatePopupButton tooltip you should set date popup button ToolTip to empty string:
<telerik:RadDatePicker ID ="RadDatePicker1" runat="server">
    <DatePopupButton ToolTip="" />
</telerik:RadDatePicker>

Greetings,
Pavlina
the Telerik team
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 their blog feed now.
0
Princy
Top achievements
Rank 2
answered on 15 Jun 2012, 06:14 AM
Hi Tina,

Try setting ShowDayCellToolTips property of Calendar to false to remove the cell tooltips in RadDatePicker.

ASPX:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server" >
   <Calendar ShowDayCellToolTips="false" ></Calendar>
</telerik:RadDatePicker>

Hope this helps.

Thanks,
Princy.
0
Baris
Top achievements
Rank 1
answered on 31 Jan 2014, 02:13 PM
They aren't efficient answer. if I use Calendar-ShowDayCellToolTips="false" tooltip does'nt work but image disappear when curson came on image.

what is real answer ? is this a bug?
0
Shinu
Top achievements
Rank 2
answered on 03 Feb 2014, 06:03 AM
Hi Baris,

The ShowDayCellToolTips  sets a value indicating whether a tooltips for day cells should be rendered or not. Setting this property to false will force Telerik RadCalendar to not render day cell tooltips. Please have a look into the sample code snippet which works fine at my end and the attached screenshots.

ASPX:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server">
</telerik:RadDatePicker>
<br />
<br />
<br />
<telerik:RadDatePicker ID="RadDatePicker2" runat="server" Calendar-ShowDayCellToolTips="false">
</telerik:RadDatePicker>

Thanks,
Shinu.
0
Baris
Top achievements
Rank 1
answered on 03 Feb 2014, 07:54 AM
Hi Shinu,

I want to change button image. Here is my code.

                                                <telerik:RadDatePicker ID="datepicker_01" runat="server" Calendar-ShowDayCellToolTips="false">
                                                    <DatePopupButton ImageUrl="images/button-datepicker.png" ToolTip=""/>
                                                </telerik:RadDatePicker>

Tooltip shows on calendar button , not in calender. When cursor came on calender image, image disappears and writes tooltip in that area.

if write tooltip="" image dissappears againg but nothing like writes.

I added images. 

I need your help :)
0
Shinu
Top achievements
Rank 2
answered on 04 Feb 2014, 04:05 AM
Hi Baris,

I guess you want to show custom image on DatePopupButton and hide the tooltip in button. Please have a look  into the sample code snippet which works fine at my end.

ASPX:
<telerik:RadDatePicker ID="datepicker_01" runat="server" Calendar-ShowDayCellToolTips="false">
    <DatePopupButton ImageUrl="../Images/plus.gif" ToolTip="" HoverImageUrl="../Images/plus.gif"/>
</telerik:RadDatePicker>

Thanks,
Shinu.
0
Baris
Top achievements
Rank 1
answered on 05 Feb 2014, 07:35 AM
Great Answer. Thx my friend :)
Tags
Calendar
Asked by
Tina
Top achievements
Rank 1
Answers by
Pavlina
Telerik team
Princy
Top achievements
Rank 2
Baris
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or