gpt4 book ai didi

jsf - 如何初始化 primefaces scrollPanel

转载 作者:行者123 更新时间:2023-12-04 02:54:30 26 4
gpt4 key购买 nike

当“文本”变量太长且不适合屏幕时,首先对话框加载 ScrollPanel 不会呈现。调整对话框大小后,它出现了。有什么解决办法吗?

<p:dialog id="logDetailsDialogId" header="Log Details" appendToBody="true"                
widgetVar="logDialog" resizable="true">
<p:scrollPanel>
<h:outputText value="#{myController.text}"/>
</p:scrollPanel>
</p:dialog>

最佳答案

将宽度和高度添加到您的 p:dialog 可以解决这个问题。

<p:dialog id="logDetailsDialogId" header="Log Details" appendToBody="true"                
widgetVar="logDialog" resizable="true" width="800" height="600">
<p:scrollPanel style="height">
<h:outputText value="#{myController.text}"/>
</p:scrollPanel>
</p:dialog>

注意:值可以以 % 为单位设置,但请记住它会从父项中获取 %,默认情况下 body 没有高度,因此它将采用 100%。

关于jsf - 如何初始化 primefaces scrollPanel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16937292/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com