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
90
How to modified tooltip when mouse over (mouse move) in an appointment
posted

when mouse over in an appoint,it will show a tooltip such as : 3pm-5pm Lunch(Cafe).But I want modified this tooltip like that :

Time : 3pm-5pm
Subject : Lunch
Location : Cafe
Description : meeting a client

How I can do it?

Parents
No Data
Reply
  • 142
    Verified Answer
    posted

    Here's the default example, that you can modify:

     myDayView.AppointmentTooltipFormatString = "<START_DATE_TIME> - <END_DATE_TIME><NEW_LINE><SUBJECT><NEW_LINE>(<LOCATION>)" 'FormatTag_ALL_DAY_EVENT      "<ALL_DAY_EVENT>" String                'FormatTag_DESCRIPTION    "<DESCRIPTION>"   String                'FormatTag_END_DATE_TIME  "<END_DATE_TIME>" String                'FormatTag_LOCATION "<LOCATION>"      String                'FormatTag_NEW_LINE "<NEW_LINE>"      String                'FormatTag_RECURRENCE_IMAGE     "<RECURRENCE_IMAGE>"    String                'FormatTag_REMINDER_IMAGE "<REMINDER_IMAGE>"      String                'FormatTag_SHOW_TIME_AS   "<SHOW_TIME_AS>"  String                'FormatTag_START_DATE_TIME      "<START_DATE_TIME>"     String                'FormatTag_SUBJECT  "<SUBJECT>" String

                    'FormatTag_VARIANCE_IMAGE "<VARIANCE_IMAGE>"      String

     

Children