I have the following code:
<h:dataTable id="dt" value="#{somelist}" var="entry"> <h:column> #{entry.title} </h:column> <h:column> <h:commandLink id="lnk"> <mycomp:doSomething id="dummy" /> </h:commandLink> </h:column> </h:dataTable>
My composite component (mycomp: doSomething) looks like this:
<?xml version='1.0' encoding='UTF-8' ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:h="http://java.sun.com/jsf/html" xmlns:composite="http://java.sun.com/jsf/composite"> <composite:interface> </composite:interface> <composite:implementation > <script type="text/javascript"> </script> </composite:implementation> </html>
I would expect the output ( #{component.parent.clientId} ) to be something similar: dt:0:lnk , but instead it returns dt:0:dummy , that is, the client identifier of the composite component.
How to get the id of the real parent tag?
source share