We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When you enable dataTable export buttons page-length-menu disappears.
page-length-menu
You can see it in this link in sections Basic usage and Buttons and row classes (page length menu is not in dataTable)
Basic usage
Buttons and row classes
https://maven.apache.org/plugins/maven-resources-plugin/examples/copy-resources.html
dataTable without export buttons
<h:form> <b:dataTable value="#{carPool.carPool}" var="car"> <b:dataTableColumn value="#{car.brand}" /> <b:dataTableColumn value="#{car.type}" /> <b:dataTableColumn value="#{car.color}" /> <b:dataTableColumn value="#{car.year}" order="asc"/> <b:dataTableColumn value="#{car.price}" /> <b:dataTableColumn value="#{car.enginePower}" label="Engine Power (hp)" /> </b:dataTable> </h:form>
dataTable with export buttons
<h:form> <b:dataTable value="#{carPool.carPool}" var="car" excel="true" csv="true" pdf="true" columnVisibility="true" copy="true" print="true" row-style-class="#{car.enginePower>100?'light-power':'light'}, #{car.enginePower>100?'dark-power':'dark'} "> <b:dataTableColumn value="#{car.brand}" /> <b:dataTableColumn value="#{car.type}" /> <b:dataTableColumn value="#{car.color}" /> <b:dataTableColumn value="#{car.year}" order="asc"/> <b:dataTableColumn value="#{car.price}" /> <b:dataTableColumn value="#{car.enginePower}" label="Engine Power (hp)" /> </b:dataTable> </h:form>
Thanks!
The text was updated successfully, but these errors were encountered:
#928 fixed: showing any of the export buttons used to hide the page l…
b8ebead
…ength selector
As it turns out, it's surprisingly simple to solve this bug. Thanks for the hint!
I've uploaded a new developer snapshot of BootsFaces 1.2.1 to Maven Central. See #369 how to get it.
Sorry, something went wrong.
stephanrauh
No branches or pull requests
When you enable dataTable export buttons
page-length-menu
disappears.You can see it in this link in sections
Basic usage
andButtons and row classes
(page length menu is not in dataTable)https://maven.apache.org/plugins/maven-resources-plugin/examples/copy-resources.html
dataTable without export buttons
dataTable with export buttons
Thanks!
The text was updated successfully, but these errors were encountered: