从JSF中的另一个表格调用数据
我需要调用另一种形式的数据,这是可能的吗?我发布摘要代码。当我寻找tramitebean的值时,我使用的是java + jsf + primefaces.description。谢谢
<p:tabView id="tab">
<p:tab title="Title1">
<h:form id="form1">
<p:textEditor value="#{tramiteBean.descripcion}" id="descripcion"/>
<p:inputNumber value="#{tramiteBean.idTipo}" id="tipo"/>
</h:form>
</p:tab>
<p:tab title="Title2">
<h:form id="form2">
<p:commandButton value="Send" actionListener="#{control.doSome}" update=":tab:form1"/>
</h:form>
</p:tab>
</p:tabView>
I need to call the data that is in another form, is this possible? I publish a summary code. I use this is Java + JSF + Primefaces When I look for the values of tramiteBean.description, I get null. Thank you
<p:tabView id="tab">
<p:tab title="Title1">
<h:form id="form1">
<p:textEditor value="#{tramiteBean.descripcion}" id="descripcion"/>
<p:inputNumber value="#{tramiteBean.idTipo}" id="tipo"/>
</h:form>
</p:tab>
<p:tab title="Title2">
<h:form id="form2">
<p:commandButton value="Send" actionListener="#{control.doSome}" update=":tab:form1"/>
</h:form>
</p:tab>
</p:tabView>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这是不可能的。
从一种表单中获取输入并提交另一种表格作品。
您为什么不以单个形式包装整个TabView?
I don't think that is possible.
Taking input from one form and submiting another form works.
Why don't you wrap the entire tabView in a single form?