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
40
Hide scroll bar in webdayview
posted

Hi, i've a problem. How i can hide the scroll bar in my wedday view? I tryed to add the css class

.hide

{overflow: hide;}

 

but nothing. The scroll bar dont want to hide. Can someone help me? Please?

 

P.S: Sorry for my english

  • 37874
    posted

    Hello, gabriele.

     

    It has been some time since your post, however in case you still need assistance I would be glad to help.

    As you suggested, in order to hide the scrollbar from WebDayView control, you have to set the overflow style attribute. The corresponding element is a div with ID “WebDayView1_divScroll” (WebDayView1 is the ID of your control). You also have to make the overflow declaration “important” to be able to overwrite the inline style, applied to the element. Here is the CSS rule:

     

    div#WebDayView1_divScroll

    {

        overflow: hidden !important;

    }

     

    If you need any further assistance on the matter please do not hesitate to ask.