<h:form id="formId">
<p:wizard id="wizardId">
<p:tab id="tabId">
<p:dataTable id="tableId">
<p:column>
<h:commandLink value="remove" update=""/>
</p:column>
</p:dataTable>
</p:tab>
</p:wizard>
</h:form>
I need to update only the <p:dataTable>
without the entire form.
I tried using @form
, @parent
, :formId:wizardId:tabId:tableId
, but none of them are working as I want. When I use @form
, it is checking for validation which I don't need to do.
How can I achieve this?