Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
310
Disable TipStyle Header in UltraMonthViewMulti Control
posted

Hi,

  I have a one UltraMonthViewMulti Control in my form. when hover mouse in control then corresponding day is holiday or any appointments it will display in the tool tip. tool tip messages like Holidays:Independence day but i want the message like only Description "Independence day" .

My code in c# for add holiday :

  ultraCalendarInfo1.Holidays.Add(date,"Independence  day");

Anybody help to remove header in tooltip please.

Parents
No Data
Reply
  • 23930
    Offline posted

    Hi Murali,

    Thank you for contacting Infragistics Developer Support.

    You can use the BeforeDisplayDayTooltip event. The arguments of this event have a Tooltip property from which you can remove the “Holidays:” part. To do that you can use code like:

    if (e.Day.Holidays.Count > 0)

    {

                    e.ToolTip = e.ToolTip.Replace("Holidays:\r\n", "");

    }

    Please let me know if you have any additional questions.

Children