当前位置: 首页 > 面试题库 >

确定绝对编号

龙亮
2023-03-14
问题内容

如何确定OrganizationUnit(from
/webapp/resources/acme/organizationUnit.xhtml)的绝对ID
?当我从树中选择一个节点时,organizationUnit应该显示选定的节点。我不能使用相对ID,因为p:ajax元素与organizationUnit组件不在同一命名容器中。在这种情况下,我需要使用绝对ID。使用Firebug时,组件的ID为tabs:0:editorsGroup:4:editor3:accountWindowsContainer:organizationUnit。这不是:form:tabs:editorsGroup:editor:accountWindowsContainer:organizationUnit组件的绝对ID吗?

编辑1

custom:include的配置如下:

<?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 { ... }

使用了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(此文件存储在editor.componentgenericAccount.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>

问题答案:

这不是:form:tabs:editorsGroup:editor:accountWindowsContainer:organizationUnit组件的绝对ID吗?

仅当您从中 删除
并且可以确保您的实现时,就是这样。如果后者不正确,则需要从绝对ID中删除该零件。prependId="false"``<h:form>``<custom:include>``NamingContainer``:editor



 类似资料:
  • 当一个元素的 position属性设置为 absolute 或 fixed,它将使用绝对定位。绝对定位的元素将从文档流中完全删除,它原先在正常文档流中所占的空间会关闭,就好像该元素不存在一样,因此不会在原先的位置留下空白。 绝对定位的元素相对它的包含块进行定位。position: absolute 元素的包含块是最近已定位(position属性被设置,且不是static)的祖先元素,如果没有已定位

  • 问题内容: 根据W3Schools: 相对定位的元素通常用作绝对定位元素的容器块。 为什么是这样?有没有很好的例子? 问题答案: 一个很好的例子是当您想将某些内容放置到页面上或相对于容器/ div放置时。 这向您显示,如果绝对div不在“相对” div内,则内容将与文档主体对齐。 请注意,绿色div()的div内部()的对齐方式为的上/右对齐。 蓝色框()具有与绿色框()完全相同的HTML布局,但

  • 问题内容: 如标题中所述,我需要确定路径是相对路径还是绝对路径,何时运行程序: 这是我的测试用例。我到底该如何在Shell程序中执行此操作? 或更笼统地说,在这种情况下,如何检查路径是相对的还是绝对的? 问题答案:

  • 问题内容: 我想将一个元素设置为,并设置一个,但似乎没有效果。 HTML: CSS: 问题答案: 当您的元素位于其顶部时,您会期望做什么? 如果元素没有属性,则只会对放置位置的元素执行任何操作。

  • 问题内容: 请考虑以下代码: 具有绝对定位的元素明显使容纳箱“忘记”他需要的高度。 我需要在“节”(section)框内进行绝对定位,对此还有其他解决方案吗? 在此先感谢geronimo 编辑 使用表并不是真正的选择,我需要某种“多级” /“嵌套”布局,其中第二个col始终位于同一位置: (当然没有“ |”的情况下) 问题答案: 使用时,该元素将从正常页面流中删除。因此,它不再影响其容器元素的布局

  • 问题内容: 在itext中,我有一个块/短语/段落(我不介意哪个),我想将页面上的其他位置放置在例如300 x 200的位置。我该怎么做? 问题答案: 最后,我编写了自己的方法。