Określ bezwzględny identyfikator

Jak określić bezwzględny identyfikator jednostki organizacyjnej (od/webapp/resources/acme/organizationUnit.xhtml)? Kiedy wybieram węzeł z drzewa, jednostka organizacyjna powinna wyświetlić wybrany węzeł. Nie mogę użyć identyfikatora względnego, ponieważ element p: ajax nie znajduje się w tym samym kontenerze nazewnictwa ze składnikiem jednostka organizacyjna. W tym przypadku muszę użyć bezwzględnego identyfikatora. Z Firebug identyfikatorem komponentu jesttabs:0:editorsGroup:4:editor3:accountWindowsContainer:organizationUnit. Nie jest:form:tabs:editorsGroup:editor:accountWindowsContainer:organizationUnit bezwzględny identyfikator komponentu?

EDIT1

custom: include jest konfigurowany w następujący sposób:

<?xml version="1.0"?>
<!DOCTYPE facelet-taglib PUBLIC
"-//Sun Microsystems, Inc.//DTD Facelet Taglib 1.0//EN"
"http://java.sun.com/dtd/facelet-taglib_1_0.dtd">
<facelet-taglib>
    <namespace>http://acme.com/custom</namespace>
    <tag>
        <tag-name>include</tag-name>
        <component>
            <component-type>com.acme.custom.DynamicInclude</component-type>
            <handler-class>com.acme.client.custom.tags.DynamicIncludeHandler</handler-class>          
        </component>        
    </tag>   
</facelet-taglib>  

@FacesComponent("com.geneous.custom.DynamicInclude")
public class DynamicInclude extends javax.faces.component.UIComponentBase{ ... }

public final class DynamicIncludeHandler extends javax.faces.view.facelets.ComponentHandler { ... }

Używany jest Mojarra 2.0.8.

/WEB-INF/flows/actions-acc-flow/accounts.xhtml
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    template="/WEB-INF/layouts/standard.xhtml">

    <ui:define name="content">
        <h:form id="form" prependId="false">
            <!-- messages -->
        <p:growl id="msgs" showDetail="true" />
                 ...
            <h:panelGroup id="mainPanel">
                <ui:include src="/WEB-INF/flows/actions-acc-flow/genericAccountsTable.xhtml" />
            </h:panelGroup>
        </h:form>
    </ui:define>
</ui:composition>
/WEB-INF/flows/actions-acc-flow/genericAccountsTable.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">

    <h:outputScript library="primefaces" name="primefaces.js" />
    <h:outputStylesheet library="primefaces" name="primefaces.css" />

    <p:dataTable id="genericAccounts"
    ...
    </p:dataTable>
    <p:spacer height="1" />
    <p:toolbar>
        <p:commandButton value="#{label.add}"
            action="#{accountsBean.initializeEntity}" immediate="true"
            update=":form:actionsDialog :form:msgs"
            oncomplete="actionsDialog.show()">                  
        </p:commandButton>              
    </p:toolbar>
    <ui:include src="/WEB-INF/flows/actions-acc-flow/mainDialog.xhtml" />
    ...
</ui:composition>
/WEB-INF/flows/actions-acc-flow/mainDialog.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">

    <p:dialog id="actionsDialog" widgetVar="actionsDialog"
        dynamic="true" modal="true">
    ...
        <ui:include src="/WEB-INF/flows/actions-acc-flow/genericAccount.xhtml"/>
        ...
    </p:dialog>
</ui:composition>
/WEB-INF/flows/actions-acc-flow/genericAccount.xhtml
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui"
    xmlns:c="http://java.sun.com/jstl/core"
    xmlns:custom="http://geneous.com/custom">
    <p:tabView id="tabs" value="#{accountsBean.groups}" var="group">
        <p:tab title="#{eval.getString(group.name)}">
            <p:dataTable id="editorsGroup" value="#{group.editors}" var="editor">
                <p:column>
                    <custom:include src="#{editor.component}" id="editor">
                        <ui:param name="beanName" value="#{editor.beanName}" />
                        <ui:param name="enabled" value="#{editor.enabled}" />
                        <ui:param name="mandatory" value="#{editor.mandatory}" />
                        <ui:param name="name" value="#{editor.name}" />
                    </custom:include>
                </p:column>
            </p:dataTable>
        </p:tab>
    </p:tabView>
</ui:composition>
/WEB-INF/flows/editors/accountsWindowsContainer.xhtml(this plik jest przechowywany weditor.component i zawarte w genericAccount.xhtml)
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:acme="http://java.sun.com/jsf/composite/acme">

    <acme:organizationUnit bean="#{windowsContainer}" mandatory="#{mandatory}"
        name="#{name}" id="accountWindowsContainer" />  
</ui:composition>
/webapp/resources/acme/organizationUnit.xhtml
<!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:composite="http://java.sun.com/jsf/composite"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">
    <!-- INTERFACE -->
    <composite:interface>
        <composite:attribute name="bean" type="java.lang.Object" required="true" />
        <composite:attribute name="mandatory" type="boolean" required="true"/>
        <composite:attribute name="name" type="java.lang.String" required="true" />
    </composite:interface>
    <!-- IMPLEMENTATION -->
    <composite:implementation>
        <h:panelGrid columns="2">
            <h:outputText value="#{cc.attrs.name}: #{cc.attrs.mandatory ? '*' : ''}" />
            <p:tree value="#{cc.attrs.bean['root']}" var="node" 
                selectionMode="single" selection="#{cc.attrs.bean['selectedNode']}">
                <p:ajax event="select" listener="#{cc.attrs.bean['onNodeSelect']}"
                    update="absolute_id_of_organization_unit" />
                <p:treeNode>
                    <h:outputText value="#{node}" />
                </p:treeNode>
            </p:tree>
            <h:outputText />
            <p:inputText id="organizationUnit"
                value="#{cc.attrs.bean['selectedItemPath']}"
                disabled="true" />
        </h:panelGrid>
    </composite:implementation>
</html>  

questionAnswers(1)

yourAnswerToTheQuestion