PrimeFaces is a renowned open-source UI component library for JSF-based web applications. It provides an extensive set of rich, customizable UI components that simplify the process of building feature-rich and visually appealing user interfaces. In this article we will learn how to integrate its library in Quarkus applications.
primefaces
PrimeFaces with Jakarta EE 10 made simple
In this article we will discuss how to create and deploy a Jakarta EE 10 application that uses Primefaces as Jakarta Faces implementation. We will build a sample application that will run in microservice-style as WildFly Bootable JAR.
How to configure PrimeFaces Themes
PrimeFaces themes are pre-designed sets of styles that define the appearance of various UI components within the library. These themes encompass elements like fonts, colors, spacing, and other design attributes. By selecting an appropriate theme, developers can instantly transform the visual presentation of their PrimeFaces components, giving their web application a consistent and polished appearance.
PrimeFaces autocomplete made simple
PrimeFaces AutoComplete displays suggestions while the input is typing. AutoComplete features various options, multiple selections, customizable content and other cool effects. Let’s see how to run a quick example of it.
Primefaces Chart in a nutshell
Do you need to include cool charts in your Web application and you want to do it really quickly? Have a look at Primefaces which features a large set of to chart components to render your data.
Primefaces File Upload made simple
The PrimeFaces File upload component can perform server side file uploads using a straightforward client API. We have updated this tutorial to show how to upload files using Primefaces 10 and WildFly 24.
PrimeFaces Datatable in a nutshell
The dataTable is a key component of JSF architecture. It can display Objects in a Collection or an Array where each Object represents one row in the table and columns match instance variables in the Object. In this tutorial we will show how to use the Primefaces Datatable component in minutes. If you are new to Primefaces … Read more
Export your dataTable to Excel and PDF using Primefaces
Do you need exporting your JSF dataTable to any kind of format such as Excel, PDF, CSV, XML ? We have updated this tutorial to Primefaces 10 to do it in a minute! In order to export your dataTable, you can use the DataExporter UICommand which is part of the Primefaces suite. Using it is … Read more
How to populate a dataTable from a JSON file
How to use natively JSON data into a JSF dataTable ? When using Primefaces you have more than one option to do it! The JSF dataTable tag is used to display data on JSF view pages. The data bound table components are responsible for displaying the relational data in a tabular format. typically a dataTable … Read more
JSF Drag and Drop with Primefaces
In this tutorial we will learn how to perform Drag & Drop in your JSF applications using PrimeFaces library. Drag & Drop with PrimeFaces Drag-and-drop is an action, meaning grabbing an object and dragging it to a different location. Components capable of being dragged and dropped enrich the Web and make a solid base for … Read more