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

Open the calendar popup

2 Answers 424 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
Kjell
Top achievements
Rank 1
Iron
Kjell asked on 19 Mar 2014, 06:20 PM
How set RadDatePicker DatePopupButton-ToolTip visible to false?
I vant to remove the tooltip text "Open the calendar popup" Se attached image....
This not work RadDatePicker DatePopupButton-ToolTip=""

2 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 Mar 2014, 02:55 AM
Hi Kjell,

Please try the following code snippet which works fine at my end.

ASPX:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server">
    <DatePopupButton ToolTip="" />
</telerik:RadDatePicker>

You can also hide the ToolTip from JavaScript as follows.

JavaScript:
function pageLoad() {
    var datePicker = $find("<%=RadDatePicker1.ClientID %>");
    datePicker.get_popupButton().title = "";
}

You can do the same in code behind also as follows.

C#:
protected void Page_Load(object sender, EventArgs e)
{
    RadDatePicker1.DatePopupButton.ToolTip = string.Empty;
}

Please provide your code if it doesn't help.
Thanks,
Shinu.
0
Kjell
Top achievements
Rank 1
Iron
answered on 20 Mar 2014, 04:08 PM
Only JavaScript function did  work.....
Thanks :-)
Tags
Calendar
Asked by
Kjell
Top achievements
Rank 1
Iron
Answers by
Shinu
Top achievements
Rank 2
Kjell
Top achievements
Rank 1
Iron
Share this question
or