When I using pickList of primefaces I had a problem:
This is my pickList:
<p:pickList id="pkList" value="#{func_route.cities}" var="city" itemLabel="#{city}" itemValue="#{city}" filterMatchMode="contains" showSourceControls="true" showTargetControls="true" showSourceFilter="true" showTargetFilter="true" />
This is my CSS for my pickList:
.ui-picklist .ui-picklist-list {
list-style-type: none;
margin: 0;
padding: 0;
overflow: auto;
height: 130px;
width: 100px !important;
}
But CSS of primefaces:
.ui-picklist .ui-picklist-list {
width: 350px !important;
}
So attribute width of my CSS are not accept in this my code. How can I fix it ?