我正在尝试更改自动完成的大小(primefaces 3.3),我尝试了以下所有选项,但大小保持不变。
size="600"
Style="width:600px;"
StyleClass > css file with width:600px;
但它们都没有增加尺寸,所以我该怎么做。
注意:我注意到,如果我指定(宽度 > PanelGrid 大小),那么面板网格大小会自动更改,但 autoComplete 仍然是默认大小。
更新:我的自动完成代码
<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">