Я использую JSF в своем приложении. Я получаю сообщение об ошибке во время отображения данных через ace linkButton.Не удается прочитать свойство 'linkButton' of undefined
Ошибка я получаю: Uncaught TypeError: Не удается прочитать свойство «LinkButton» неопределенной
Благодаря этой ссылке не позволит. Я понимаю, что что-то не инициализируется, поэтому я получаю ошибку, но не знаю, что.
Это мой код:
<ice:panelGroup>
<fieldset>
<legend>Downstream info</legend>
<ice:panelGrid columns="2">
<ice:outputLabel value="Channel type" />
<ice:outputText value="Primary"/>
<!-- Downstream -->
<ice:outputLabel value="Channel ID" />
<ice:panelSeries id="dsChannelId" value="#{viewCustomerBean.pollModemResult.downstreamChannelID}" var="item">
<ice:panelGroup style="width:63px;float:left;text-align:center;"><ice:outputText value="#{item}" /></ice:panelGroup>
</ice:panelSeries>
<ice:outputLabel value="Frekvens (Hz)" />
<ice:panelSeries id="dsFrekvensId" value="#{viewCustomerBean.pollModemResult.downstreamFrekvens}" var="item">
<ice:panelGroup style="width:63px;float:left;text-align:right;"><ice:outputText value="#{item}" rendered="#{item!=0}"/></ice:panelGroup>
<ace:linkButton id="FrekID" value="#{item}" action="#{viewCustomerBean.pollModemResult.showFreqPopup}" rendered="#{item==0}"/>
</ice:panelSeries>
<ice:outputLabel value="Received power level (dBuV)" />
<ice:panelSeries id="dsPowerId" value="#{viewCustomerBean.pollModemResult.downstreamReceivedPowerLevel}" var="item">
<ice:panelGroup style="width:63px;float:left;text-align:center;"><ice:outputText value="#{item}" /></ice:panelGroup>
</ice:panelSeries>
<ice:outputLabel value="Downstream SNR (dB)" />
<ice:panelSeries id="dsSNRId" value="#{viewCustomerBean.pollModemResult.downstreamSNR}" var="item">
<ice:panelGroup style="width:63px;float:left;text-align:center;"><ice:outputText value="#{item}" /></ice:panelGroup>
</ice:panelSeries>
<ice:outputLabel value="Downstream MER (dB)" />
<ice:panelSeries id="dsMERId" value="#{viewCustomerBean.pollModemResult.downstreamMER}" var="item">
<ice:panelGroup style="width:63px;float:left;text-align:center;"><ice:outputText value="#{item}" /></ice:panelGroup>
</ice:panelSeries>
</ice:panelGrid>
</fieldset>
</ice:panelGroup>
Привет, пожалуйста, создайте [mcve]. Самая высокая вероятность того, что вы вручную включили библиотеку jquery. – Kukeltje