user3118313
user3118313

Reputation: 1

Primefaces selectonemenu dropdown panel issue

I have a selectonemenu which has list of currency. When i click the menu, In mozilla and IE 11, the width of dropdown is same as the width of selectonemenu

but, when I try to do so in chrome, the panel width is smaller than the selectone menu

Upvotes: 0

Views: 641

Answers (1)

George Vassilev
George Vassilev

Reputation: 27

Set width in CSS file for class

 .ui-selectonemenu-panel {
    width : YOUR_WIDTH !important ;
 }

Upvotes: 1

Related Questions