scroll bar

hi,
I am using java script scroll bar (vertical),In that I don't want to display the navigation arrows,I want to display the scroll bar only.
If I gave like
 .e-scroller .vDown {
                    display:none;
             }
             .e-scroller .vUp {
                    display:none;
             }
then empty space is displaying in the scroll bar area.can u tell me how to display the scroll bar without up and down arrow icons.

1 Reply

SG Saravanan G Syncfusion Team November 20, 2013 01:06 PM UTC

Hi Charan,

 

Thanks for using Syncfusion products.

 

We would like to inform you that it is possible to achieve your required scenario using “buttonSize” property value as 0(zero). Please find the below  code snippet:

 

<code>

    <script type="text/javascript" class="jsScript">

        $(function () {

            $("#scrollcontent").ejScroller({ height: 300, width: 800, buttonSize: 0 });

        });

    </script>

</code>

 

Also for your reference, we have prepared the simple sample with your required scenario, which can be downloaded from the below location.

 

Please let us know, if you need any other further assistance.

 

Regards,

 

Saravanan G



Scroll_bar_9d1e985b.zip

Loader.
Up arrow icon