在 prerender() 中设置绝对位置
我对 Java Web 内容完全陌生,但我的问题是:
1)如何在 prerender() 函数中向 JSF 页面(webuijsf)添加新控件? 2)如何更改已使用视觉设计器添加的元素的位置?也在 prerender() 中。
我有许多来自数据库的输入字段+标签要显示。所以我想象我从数据库中读取并在预渲染期间添加适当数量的控件。这些动态添加的控件下方还有一个网格,我想同时进一步向下移动。
谢谢!
Im completely new to Java web stuff, but here goes my question:
1) How can I add new controls to a JSF page (webuijsf) in the prerender() function?
2) How can I change the position of elements already added using the visual designer? Also in prerender().
I have a number of input fields + labels to show, coming from a database. So I imagine I read from the database and add the appropriate number of controls during prerender. There's also a grid below these dynamically added controls, which I'd like to move further down at the same time.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要编写 您自己的组件(如果您希望基于数据库数据呈现表单)。您应该使用标准 html 技术或编写自己的自定义网格组件来定位网格。
You would need to write your own component if you wished to render forms based on database data. You should position your grid using standard html techniques or writing your own custom grid component.