Locale

Language
English
English
English
French
German
German
Italian
Korean
Spanish
Catalan
Dutch
Portuguese
Portuguese
Arabic
Arabic
Bulgarian
Czech
Greek
Persian
Finnish
Danish
Hindi
Indonesian
Croatian
Japanese
Hungarian
Hebrew
Georgian
Central Kurdish
Khmer
Kyrgyz
Kazakh
Lithuanian
Latvian
Malay
Norwegian
Polish
Romanian
Russian
Slovak
Slovenian
Serbian
Swedish
Thai
Turkish
Ukrainian
Vietnamese
Chinese
Chinese

Input Style

Free Themes

Built-in component themes created by the PrimeFaces Theme Designer.

Saga Saga
Vela Vela
Arya Arya

Legacy Free Themes

Luna Amber Luna Amber
Luna Blue Luna Blue
Luna Green Luna Green
Luna Pink Luna Pink
Nova Nova
Nova Nova Alt
Nova Nova Accent

DragDrop DataView

DragDrop components have special integration with data components. Drag the products using the headers to the drop area.

Bamboo Watch
Black Watch
Blue Band
Blue T-Shirt
Bracelet
Brown Purse
Chakra Bracelet
Galaxy Earrings
Game Controller
Selected Products
!!!Drop here!!!

<script type="text/javascript">
    function handleDrop(event, ui) {
        var droppedProduct = ui.draggable;

        droppedProduct.fadeOut('fast');
    }
</script>

<div class="card">
    <h:form id="productForm">
        <p:dataView id="availableProducts" var="product" value="#{dndProductsView.products}" rows="9" layout="grid" gridIcon="pi pi-th-large">
            <p:dataViewGridItem>
                <p:panel id="pnl" header="#{product.name}" style="text-align:center">
                    <h:panelGrid columns="1" style="width:100%">
                        <p:graphicImage name="/demo/images/product/#{product.image}"/>
                    </h:panelGrid>
                </p:panel>

                <p:draggable for="pnl" revert="true" handle=".ui-panel-titlebar" stack=".ui-panel"/>
            </p:dataViewGridItem>
        </p:dataView>

        <p:fieldset id="selectedProducts" legend="Selected Products" style="margin-top:20px">
            <p:outputPanel id="dropArea">
                <h:outputText value="!!!Drop here!!!" rendered="#{empty dndProductsView.droppedProducts}"
                              style="font-size:24px;"/>
                <p:dataTable id="selectedProductsTable" var="product" value="#{dndProductsView.droppedProducts}"
                             rendered="#{not empty dndProductsView.droppedProducts}">
                    <p:column headerText="Code">
                        <h:outputText value="#{product.code}"/>
                    </p:column>

                    <p:column headerText="Name">
                        <h:outputText value="#{product.name}"/>
                    </p:column>

                    <p:column headerText="Category">
                        <h:outputText value="#{product.category}"/>
                    </p:column>

                    <p:column headerText="Quantity">
                        <h:outputText value="#{product.quantity}"/>
                    </p:column>

                    <p:column style="width:32px">
                        <p:commandButton update=":productForm:display" oncomplete="PF('productDialog').show()"
                                         icon="pi pi-search">
                            <f:setPropertyActionListener value="#{product}"
                                                         target="#{dndProductsView.selectedProduct}"/>
                        </p:commandButton>
                    </p:column>
                </p:dataTable>
            </p:outputPanel>
        </p:fieldset>

        <p:droppable for="selectedProducts" tolerance="touch" activeStyleClass="ui-state-highlight"
                     datasource="availableProducts" onDrop="handleDrop">
            <p:ajax listener="#{dndProductsView.onProductDrop}" update="dropArea availableProducts"/>
        </p:droppable>

        <p:dialog header="Product Detail" widgetVar="productDialog" resizable="false" draggable="false"
                  showEffect="fade" hideEffect="fade" modal="true">
            <p:outputPanel id="display">
                <p:column rendered="#{not empty dndProductsView.selectedProduct}">
                    <div class="product">
                        <div class="product-grid-item card" style="margin-bottom: 0">
                            <div class="product-grid-item-top">
                                <div>
                                    <i class="pi pi-tag product-category-icon"/>
                                    <span class="product-category">#{dndProductsView.selectedProduct.category}</span>
                                </div>
                                <span class="product-badge status-#{dndProductsView.selectedProduct.inventoryStatus.statusName}">#{dndProductsView.selectedProduct.inventoryStatus.text}</span>
                            </div>
                            <div class="product-grid-item-content">
                                <p:graphicImage
                                        name="demo/images/product/#{dndProductsView.selectedProduct.image}"/>
                                <div class="product-name">#{dndProductsView.selectedProduct.name}</div>
                                <div class="product-description">#{dndProductsView.selectedProduct.description}</div>
                                <p:rating readonly="true" value="#{dndProductsView.selectedProduct.rating}"/>
                            </div>
                            <div class="product-grid-item-bottom">
                                <h:outputText value="#{dndProductsView.selectedProduct.price}"
                                              styleClass="product-price">
                                    <f:convertNumber currencySymbol="$" type="currency"/>
                                </h:outputText>
                                <p:commandButton value="Add To Cart" icon="pi pi-shopping-cart"
                                                 disabled="#{dndProductsView.selectedProduct.inventoryStatus == 'OUTOFSTOCK'}">
                                </p:commandButton>
                            </div>
                        </div>
                    </div>
                </p:column>
            </p:outputPanel>
        </p:dialog>
    </h:form>
</div>