我试图在搜索按钮问题上执行 ajax 调用是 404 错误。
主窗体加载商品,灯箱(jquery 工作),当点击搜索问题是 404 时,调试以查看方法是否在 ajax 命令按钮上被调用。
<h:form id="mainForm">
<h:commandButton onclick="showLig();" value="Find Person"/>
<div id="moreInfo" class="lightbox" style="display: none;">
<ui:include src="external.xhtml"/>
</div>
</h:form>
外部 xhtml
<h:inputText id="personSearch" value="#{bean.holdingValue}" ></h:inputText>
<h:commandButton value="Search">
<f:ajax render="@form" execute="personSearch" listener="#{controller.method}"/>
</h:commandButton>
<h:dataTable id="someTable" value="list" var="x">
blah..
</h:dataTable>