<p:dataTable id="id"
value="#{bean.soemList}" var="account">
<p:commandLink value="#{account.id}"
action="#{bean.methodCall}" update="dialogID" oncomplete="dlg1.show();">
</p:commandLink>
. . . .
<p:dialog header="#{i18n.details}" widgetVar="dlg1" modal="true"
height="200" width="600">
<h:panelGroup id="dialogID" layout="block">
<h:outputLabel value="#{bean.var1}"></h:outputLabel>
p:dialog gets updated when the link is outside p:dataTable , but when the link is placed in p:dataTable, p:dialog doesnt show updated value. I need to keep the link in p:dataTable.The component to be updated is not in dataTable. Please help.