能给我固定overlayPanel位置的键/值吗?我想在中间修复它,但我无法弄清楚。我有这个例子:

<p:overlayPanel id="overlayPanelSearch" for="searchButton" my="top" at="bottom">

最佳答案

这就是我的理解。
“我的”是覆盖面板框。
“at”是commandButton。

<p:commandButton id="chartBtn" type="button" />
<p:overlayPanel id="chartPanel" for="chartBtn" my="right top" at="right bottom">
  ...
</p:overlayPanel>

因此,上面的内容为:“将覆盖面板的右上角与命令按钮的右下角相连”

关于primefaces - 定位PrimeFaces的叠加面板,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11306743/

10-11 13:49