我有这样的表格:
<h:form id="productsForm">
<p:dialog id="newProductDlg">
<p:panelGrid>
<p:outputLabel value="Name:"/>
<p:inputText id="newProductName" value="#{productService.name}" />
<p:outputLabel value="Category:"/>
<p:selectOneMenu id="parentCategoryList"
value="#{productService.category}">
<f:selectItems var="currCateg" itemLabel="#{currCateg}"
value="#{categoryService.categories}" itemValue="#{currCateg}" />
</p:selectOneMenu>
<p:outputLabel value="Price:"/>
<p:spinner id="priceSpinner" value="#{productService.price}"/>
<p:outputLabel value="Specifications:"/>
<p:commandButton value="Add specifications"
title="Open 'Add specifications' dialog"/>
<f:facet name="footer">
<p:commandButton id="addNewProductBtn" value="Add new product"
process="productsForm:specificationsArea productsForm:newProductDlg"
actionListener="#{productService.createProduct}"/>
<p:commandButton id="cancelAddingProd" value="Cancel"/>
</f:facet>
</p:panelGrid>
</p:dialog>
<p:dialog id="newSpecificationDlg">
<p:panelGrid>
<p:outputLabel value="Title:"/>
<p:inputText id="newSpecificationTitle"/>
<p:outputLabel value="Description:"/>
<p:inputText id="newSpecificationDesc"/>
<f:facet name="footer">
<p:inputTextarea readonly="true" autoResize="false"
rows="7" id="specificationsArea"
value="#{productService.specifications}">
</p:inputTextarea>
<p:commandButton value="Add new specification entry" id="addNewSpecifEntryBtn"
update="productsForm:specMessages"
process="newSpecificationTitle newSpecificationDesc specMessages"/>
<p:commandButton id="cancelAddingSpecif" value="Back"
styleClass="CategDlgBtn dlgField" type="button"/>
</f:facet>
</p:panelGrid>
</p:dialog>
</h:form>
&#13;
textArea
类似template
,向我们展示了如何在另一个页面上显示值。这就是readonly
。的原因
其工作原理如下:
1)在主对话框(newProductDlg
)中,我写了name
,category
和other
个参数,
2)我可以打开第二个对话框(newSpecificationDlg
)并写下新的规格,
3)在newSpecificationDlg
中有两个输入newSpecificationTitle
和newSpecificationDesc
。如果我按下addNewSpecifEntryBtn
specificationsArea
的值,则会通过javascript追加这两个输入的值:
var title = newSpecificationTitle.value, desc = newSpecificationDesc.value;
if (title == null || desc == null || title.length == 0 || desc.length == 0)
return;
specificationsArea.value = specificationsArea.value + title + ' : ' + desc
+ ';\n';
在这种情况下,永远不会调用setter
specifications
。
那么,为什么会发生以及如何(在我的情况下)将p:inputTextArea
的值保存到支持bean字段?
答案 0 :(得分:0)
Primefaces文档说明了readonly
inputTextArea
属性
表示此组件将阻止用户更改的标志。
这意味着该字段永远不会在客户端上更改,因为从不调用setter。
如果您想使用p:inputTextArea
来显示文本,可以将其与h:inputHidden
字段组合,在该字段中存储相同的值,并且可以在辅助bean上读取此隐藏字段。
XHTML 代码:
<p:inputTextarea readonly="true" autoResize="false"
rows="7" id="specificationsArea"
value="#{productService.specifications}">
</p:inputTextarea>
<h:inputHidden id="specificationsHidden" value="#{productService.specificationsHidden}"/>
JS 代码:
var title = newSpecificationTitle.value, desc = newSpecificationDesc.value;
if (title == null || desc == null || title.length == 0 || desc.length == 0)
return;
specificationsArea.value = specificationsArea.value + title + ' : ' + desc
+ ';\n';
specificationsHidden.value = specificationsArea.value + title + ' : ' + desc
+ ';\n';
P.S。:对不起我的英语水平。