arya-blue
luna-amber
luna-blue
luna-green
luna-pink
nova-dark
nova-light
saga-blue
vela-blue
FluidGrid
FluidGrid allows to set up a nice tight grid with items that have variable heights and widths. FluidGrid is a responsive grid. That means, the grid will reflow as the window size changes. Items can have any content: text, images, links, input fields, etc. They can be defined in a static or in a dynamic way as in data iteration components.

This example demonstrates dynamic items whose label attribute on input components is bound to the data model via the var variable. The Change Items button dynamically replaces the grid's items to verify that labels are correctly preserved across dynamic updates.

Click Submit with empty required fields to see that each validation message correctly displays its own component's label — not the label of the last item.
Source

<p:growl id="growl" showDetail="true" showSummary="true">
        <p:autoUpdate />
    </p:growl>

    <p:commandButton value="Change Items" action="#{fluidGridDynamicLabelsController.changeItems}"
                     process="@this" update="fluidGrid" style="margin-bottom:10px"/>

    <pe:fluidGrid id="fluidGrid" value="#{fluidGridDynamicLabelsController.items}" var="data"
                  resizeBound="false" hGutter="20" style="width:450px">
        <pe:fluidGridItem type="input">
            <div class="dynLabel">
                <p:outputLabel for="txt" value="#{data.label}"/>
            </div>
            <p:inputText id="txt" value="#{data.value}" label="#{data.label}" required="#{data.required}"/>
        </pe:fluidGridItem>
    </pe:fluidGrid>

    <p:commandButton value="Submit" style="margin-top: 10px;"
                     process="fluidGrid" update="fluidGrid"
                     oncomplete="if(!args.validationFailed) {PF('inputValuesWidget').show();}"/>

    <p:dialog header="Submitted Values" widgetVar="inputValuesWidget">
        <p:dataList id="inputValues" value="#{fluidGridDynamicLabelsController.items}" var="item"
                    style="margin:10px;">
            <h:outputText value="#{item.data.label} : #{item.data.value}" style="margin-right:15px;"/>
        </p:dataList>
    </p:dialog>

    <h:outputStylesheet id="fluidGridCSS">
        .pe-fluidgrid-item {
            width: 180px;
            height: 65px;
        }
        .pe-fluidgrid-item input {
            width: 170px;
        }
        .dynLabel {
            font-weight: bold;
            margin-bottom: 5px;
        }
    </h:outputStylesheet>
            
Components and more
Documentation
Attributes (move mouse over the names to see data types)
Name Description
id Unique identifier of the component in a naming container.
rendered Boolean value to specify the rendering of the component, when Set false component will not be rendered.
binding An EL expression referring to a server side UIComponent instance in a backing bean.
widgetVar Name of the client side widget.
value Collection of items (FluidGridItem) representing model of this component.
var Name of the request-scoped variable for the underlaying object for each iteration.
varContainerId Name of the request-scoped variable which contains the prefix of the client ID within pe:fluidGridItem. This property allows to get the whole clientId of a component within pe:fluidGridItem. The whole client ID is sometimes required for JavaScript or RequestContext.update(...).
style Style of the main container element. Default value is null.
styleClass Style class of the main container element. Default value is null.
hGutter Horizontal space between item elements (interpreted as pixels). Default is 0.
vGutter Vertical space between item elements (interpreted as pixels). Default is 0.
fitWidth Sets the width of the container to fit the available number of columns, based on the size of container's parent element. When enabled, you can center the container with CSS. Note: This option does not work with percentage width of items. Default is false.
originLeft Controls the horizontal flow of the layout. By default, item elements start positioning at the left. Set false for right-to-left layouts.
originTop Controls the vertical flow of the layout. By default, item elements start positioning at the top. Set false for bottom-up layouts. It's like Tetris!
resizeBound Binds layout to window resizing. You can bind and unbind resize layout afterward with the bindResize and unbindResize client-side widget's methods. Default is true.
stamp Specifies which elements are stamped within the layout. These are special layout elements which will not be laid out. Rather, FluidGrid will lay out item elements below stamped elements. You can use here every search expressions supported by PrimeFaces Search Expression Framework. Default is null.
transitionDuration Duration of the transition when items change position or appearance, set in a CSS time format. To disable all transitions, set this attribute to null. Default is 0.4s.
hasImages Boolean flag if items contain any images. This can fix overlapping items which are caused by items that change size after a layout due to unloaded media like images. Setting this flag allows to lay out all items after they have their proper sizes (images have been loaded). Default value is false.
Events (move mouse over the names to see classes)
Name Description
layoutCompletefired after a layout and all positioning transitions have been completed.
PrimeFaces Extensions Showcase - © 2011-2025,PrimeFaces: 15.0.16,PrimeFaces Extensions: 15.0.17-SNAPSHOT,JSF: Apache MyFaces JSF-2.3 Core Impl 2.3.10,Server: Apache Tomcat (TomEE)/9.0.82 (8.0.16),Build time: 2026-06-21 03:14