Primefaces 6对话框:无法调整大小

时间:2019-07-03 09:20:16

标签: jsf primefaces

我的代码:

<h:body class="login-body">
    <p:dialog widgetVar="mainAddDialog" resizable="true" header="TEST"
         modal="true">
        <h:form>
            <p:commandButton value="TEST CMD"></p:commandButton>
        </h:form>
    </p:dialog>
    <p:commandButton onclick="PF('mainAddDialog').show();"></p:commandButton>

,对话框无法调整大小! 感谢您的任何建议!

1 个答案:

答案 0 :(得分:2)

这发生在我的项目中。我使用the Manhattan theme和Primefaces 7
我认为问题在于主题的CSS。

 body .ui-dialog .ui-resizable-handle {
display: none !important; }    

如果我覆盖这些规则,则效果很好。

    body .ui-dialog .ui-resizable-handle {
            display: block !important;
             }