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
305
webmonthview appointment display area needs the wordwrap property
posted

Hi,

I am using Infragistics 9.1 version. In WebMonthView control, the appointment details are displayed in single line. We are not able to read the msg fully. once the control gets the mouse over the pop-up will show the full message. Instead, i need similar to wordwrap property to display the info in multiple lines with scroll-bars. Please help me.

Thanks in advance.

Parents
No Data
Reply
  • 4960
    Suggested Answer
    posted

    You can try overriding the CSS style to cause the appointments to word wrap by inserting this <style> tag into your .aspx page's <head> tag,

    <head>
       <title> ... </title>
       <style type='text/css'>
         .igmv_Day DIV, .igmv_OtherMonthDay DIV, .igmv_CompressedDay DIV
         .igmv_OtherCompressedDay DIV
         
    {
              WHITE-SPACE: normal;
          }
       </style>
    </head>

Children