adminfaces / admin-theme

Primefaces admin theme based on Admin LTE and Bootstrap
https://adminfaces.github.io/site/docs/latest/#admin_theme
MIT License
144 stars 62 forks source link

Autocomplete trigger is misaligned on datatable filter #246

Closed rmpestano closed 3 years ago

rmpestano commented 3 years ago
Current Behaviour
datatable-auto-before
Expected Behaviour
datatable-auto-expected
How to reproduce

A sample xhtml code may help, ex:

<p:column headerText="Model" filterBy="#{c.model}" sortBy="#{c.model}"
                                  filterMatchMode="contains">
            <f:facet name="filter">
                <p:autoComplete value="#{carListMB.filter.entity.model}" forceSelection="true"
                                minQueryLength="2" queryDelay="500" dropdown="true"
                                completeMethod="#{carListMB.completeModel}" maxResults="10">
                    <p:ajax event="itemSelect" process="@this" update="@none"
                            oncomplete="PF('carsTable').filter()"/>
                </p:autoComplete>
            </f:facet>
            <p:link value="#{c.model}" outcome="car-form.xhtml">
                <f:param name="id" value="#{c.id}"/>
            </p:link>

 </p:column>
Additional Information