我试图在调整大小后保留<p:panel>
的尺寸,以便当用户登录时,他可以拥有具有相同宽度和高度的小部件。在使用<p:resizable>
调整面板大小后,如何保持对面板的更改?一旦我从数据库中检索到它们,我如何对CSS属性进行更改?
当使用p:resizable
:
<p:resizable for="myPanel">
<p:ajax listener="#{myBean.handleResize}"/>
</p:resizable>
在后台bean中定义函数:
public void handleResize(ResizeEvent e) {
width = e.getWidth();
height = e.getHeight();
// Now persist height and width...
}
private int width;
private int height;
// getters and setters for width and height
@PostConstruct
public void init() {
// init width and height from db...
}
之后你可以使用width
和height
来设置p:panel
的初始大小:
<p:panel style="width:#{myBean.width}px;height:#{myBean.height}px;">