I'm trying to resize autocomplete (primefaces 3.3), I tried all the options listed below, but the size remains the same.
size="600" Style="width:600px;" StyleClass > css file with width:600px;
but none of them increase in size, so how to do it.
Note. I noticed that if I specify (width> PanelGrid size), the grid size of the panel will change automatically, but autoComplete is still in the default size.
Update: my autocomplete code
<p:autoComplete id="autoTest" value="#{testMB.selectedTest}" completeMethod="#{testMB.completeTest}" var="test" itemLabel="#{test.name}" itemValue="#{test}" converter="#{testConverter}" forceSelection="TRUE" queryDelay="1000" multiple="TRUE" size="600" process="@this">
source share