I'm using a web application with Prime Faces.
In my datatable, in which a column is an image, I've the pagination. So I never load too many rows.
For each row I've the button "delete row". Here the code
<p:dataTable id="dataTableUploadedImages" var="singleRow">
    ...
    ...
    <p:column headerText="#{msg['azioni']}" width="70">
        <div align="center">
            <p:commandButton icon="ui-icon-trash" 
                             title="delete Row" 
                             ajax="true"
                             action="#{myController.deleteRow(singleRow.id)}"
                             update="dataTableUploadedImages">
            </p:commandButton>
        </div>
    </p:column>
</p:dataTable>
After clicking over the button, the application refresh the entire table instead of simply remove the single row. In this page, refreshing all the rows is expensive (because a column contains an image) and slow down the application.
Is it possible to remove a row without reloading the entire table?
 
    