Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/tensorflow/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Long integer 找不到标识符为“的组件”;Acino“;引用自;“帐户”;_Long Integer - Fatal编程技术网

Long integer 找不到标识符为“的组件”;Acino“;引用自;“帐户”;

Long integer 找不到标识符为“的组件”;Acino“;引用自;“帐户”;,long-integer,Long Integer,首先,尝试在其前面添加一个冒号,使其成为update=“:acinfo”,然后查看是否有效 如果没有,那么如果您取出更新(以便加载页面)并在页面上找到acinfo panelGroup,那么它的ID仍然是acinfo吗?我看到您在主模板中将prependId设置为false,但仔细检查可能是明智的。如果不同,请尝试将其设置为该值(或在其前面加一个冒号) 如果这两个都失败了,可以尝试将formbutton上的prependId设置为true,然后update=“:formbutton:acinfo

首先,尝试在其前面添加一个冒号,使其成为
update=“:acinfo”
,然后查看是否有效

如果没有,那么如果您取出更新(以便加载页面)并在页面上找到acinfo panelGroup,那么它的ID仍然是acinfo吗?我看到您在主模板中将
prependId
设置为false,但仔细检查可能是明智的。如果不同,请尝试将其设置为该值(或在其前面加一个冒号)

如果这两个都失败了,可以尝试将formbutton上的
prependId
设置为true,然后
update=“:formbutton:acinfo”

<ui:define name="content">
    <h:panelGroup id="acinfo">
        <fieldset>
            <legend>#{masterdata['bank.account.info']}</legend>

            <table width="100%">
                <tr>
                    <td width="20%">#{masterdata['bank.account.name']}</td>
                    <td width="30%"><h:inputText
                            value="#{bankAccountBean.accountBank.name}" style="width:98%"
                            class="validate[required] text-input" tabindex="1" /></td>
                    <td width="20%">#{masterdata['bank.account.branch.name']}</td>
                    <td width="30%"><h:inputText
                            value="#{bankAccountBean.accountBank.namech}" style="width:98%"
                            class="validate[required] text-input" tabindex="6" /></td>
                </tr>
                ...............
            </table>
        </fieldset>
    </h:panelGroup>
    <fieldset>
        <legend> #{masterdata['bank.branch.list']} </legend>
        <p:dataTable id="account" value="#{bankAccountBean.listbankAccount}"
            var="baccount" selection="#{bankAccountBean.accountBank}"
            selectionMode="single" rowKey="#{baccount.makhtaikhoan}"
            scrollable="true" scrollWidth="1088" scrollHeight="250"
            style="text-align: left;">
            <p:ajax event="rowSelect" update="acinfo" />
            <p:column headerText="#{masterdata['bank.branch.name']}">
                <h:outputText value="#{baccount.name}" />
            </p:column>
            <p:column headerText="#{masterdata['bank.account.branch.name']}">
                <h:outputText value="#{baccount.namech}" />
            </p:column>
            <p:column headerText="#{masterdata['bank.account.code']}">
                <h:outputText value="#{baccount.makhtaikhoan}" />
            </p:column>
            <p:column headerText="#{masterdata['bank.account.number']}">
                <h:outputText value="#{baccount.mataikhoan}" />
            </p:column>
        ...........

        </p:dataTable>
    </fieldset>
</ui:define>
<h:form id="formbutton" prependId="false">

    <div id="cont" class="contentform" style="padding-top: 16px;">
        <div style="text-align: left; height: 18px; margin-top: 10px;">
            <p:messages id="messages" autoUpdate="true" />

        </div>
        <div>
            <ui:insert name="content">Content Form</ui:insert>


        </div>
    </div>
    <div id="jSplash"></div>
</h:form>
[javax.enterprise.resource.webcontainer.jsf.application] (http-localhost-127.0.0.1-8080-6) Error Rendering View[/masterdata/CM_Bank_Account.xhtml]: javax.faces.FacesException: Cannot find component with identifier "acinfo" referenced from "account".