i am having p:filedownload
in a primefaces
data table like this
<p:column>
<p:commandLink id="downloadLink"
style="color:blue;text-decoration:underline; "
disabled="#{ShipAttach.deleteSelect}" onclick="trailNewpage();"
value="#{ShipAttach.bpmfilename}" ajax="false">
<p:fileDownload contentDisposition="inline"
value="#{filedownloadController.fileDownload(ShipAttach)}" />
</p:commandLink>
</p:column>
when i click on the link i am getting the file opened in a same window ,i was also able to open the file in the new tab by specifying the attribute target="_blank"
i want these file to be opened in Childwindow,please help me thanks in advance.