将同一commandButton从同一页面中的一个点移动到另一个点

时间:2014-01-21 19:44:39

标签: html jsf primefaces xhtml

我在使用primefaces commandButton或XHTML CommandButton的JSF页面上的commandButton有一个奇怪的问题。这是我的代码:

<div id="outer">
<h:form>
<p:commandButton action="#{logoutBean.logout}" value="Logout" /> (1)
</h:form>
</div>

<div id="footer">
<h:form>
(2)
</h:form>
</div>

/* these are inherited from upper code ... */
</div>
</div>

我想在第2点移动(剪切和粘贴)指令1并从第1点删除它......但是如果我这样做,页面会出错。为什么?? 我在项目中的每个commandbutton都发现了这个问题。

我该怎么做?奇怪的是,如果我在第2点评论新线(所以程序应该恢复正常)它没有。要重新运行程序,我必须完全删除换行符。

0 个答案:

没有答案