我有一个自动完成组件,但它不像我想要的那样适合。
我希望弹出宽度适合输入字段,大小相同......我尝试了很多属性但没有成功。
这可能是一个限制吗?
看到,弹出小于原始输入字段。我需要做什么?
.inputPesquisa {
width: 77%;
}
...
<div class="pesquisa">
<rich:autocomplete value="#{pesquisarBean.pesquisa}" styleClass="inputPesquisa"
autocompleteList="#{bean.todos}" minChars="4" mode="client" layout="div">
<div>ata</div>
</rich:autocomplete>
<a4j:commandButton value="Pesquisar" render="out, scroller"
styleClass="botaoPesquisa" execute="@form"
actionListener="#{pesquisarBean.processAction}" />
<rich:messages showDetail="false" ></rich:messages>
</div>