I am using Primefaces google map component. I have some markers and info windows for those markers. The problem I am facing is it is showing the vertical scroll bar. But I don't need the vertical scroll bar. How can I hide the vertical scrollbar?


Update: in the first screenshot you can see that the vertical scroll is not needed as all data vertically is already visible.

enter image description here

In the second screenshot you can see the horizontal scrollbar, we have to scroll down. I just want that the vertical scrollbar disappears and only the horizontal scrollbar remains, which should be always visible.

enter image description here

link|improve this question

1  
it would help us a lot to understand your problem if you attach a screenshot of the problematic component. – craftsman Aug 4 '11 at 8:18
hmmm no answers yet.... I am still interested – dj aqeel Sep 29 '11 at 7:59
feedback

2 Answers

up vote 0 down vote accepted

Add a min-height to your infoWindow class element.

That will resolve the issue if your infoWindows are all the same size.

If not, add this line of jQuery to your click function for the infoWindow:

//remove overflow scrollbars
$('#myDiv').parent().css('overflow','');
link|improve this answer
1  
got my nuts cracked while modifying javascript for primefaces – dj aqeel Apr 3 at 8:21
feedback

If you set the width and height of the container that holds the InfoWindow's contents the scroll bar will disappear.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.