自定义wicket中的modaldialog组件

k5hmc34c  于 2021-07-06  发布在  Java
关注(0)|答案(1)|浏览(402)

我在一个页面上有多个modaldialogs,每个modaldialogs应该有不同的宽度。每个模式对话框的自定义可以在.css中进行,其中将被类覆盖 .modal-dialog 我想知道我如何可以为每个模式对话框设置不同的宽度大小而不接触.css。因为每个模态窗口都有.modal对话框类,我不能更改名称,因为它将使用模态窗口创建。
这有什么办法吗 AttributeModifier ?

public class MainPanel extends Panel {

    private final ModalDialog modalDialog;

    public MainPanel(String id, IModel<String> headingIdx, IModel<String> collapseIdx) {
        super(id);
        setOutputMarkupId(true);
        modalDialog = new ModalDialog("modalDialog");
        modalDialog.add(new DefaultTheme());
        modalDialog.trapFocus();
        modalDialog.closeOnEscape();
        add(modalDialog);

        add(new AjaxLink<Void>("showModalDialog") {
            @Override
            public void onClick(AjaxRequestTarget target) {
                modalDialog.setContent(new ModalPanel("content", MainPanel.this){
                    @Override
                    protected void close(AjaxRequestTarget target) {
                        modalDialog.close(target);
                    }
                });
                modalDialog.open(target);
            }
        });
        add(modalDialog);
    }
}
.modal-header {
    font-weight: bold;
    border: none;
}

.modal-dialog {
    border-radius: 5px;
    pointer-events: all;
}

.modal-dialog .modal-dialog-content {
    /* flex children */
    display: flex;
    flex-direction: column;
}

.modal-dialog-overlay.current-focus-trap .modal-dialog-content {
    /* resize the dialog with current focus only, otherwise the resize handle shows through on Firefox */
    resize: both;
}

.modal-dialog .modal-dialog-form {
    /* size */
    margin: 0;
    padding: 0;
    overflow: hidden;

    /* flex in parent */
    flex: 1;

    /* flex children */
    display: flex;
    flex-direction: column;
}

.modal-dialog .modal-dialog-header {
    border-radius: 5px 5px 0px 0px;
    background: #ffb158;
    margin: 0;
    padding-top: 4px;
    text-align: center;
}

.modal-dialog .modal-dialog-body {
    /* size */
    flex: 1;
    overflow-y: auto;

    padding: 20px;
}

.modal-dialog .modal-dialog-footer {
    padding: 5px;
}
am46iovg

am46iovg1#

您可以向每个modalwindow添加自定义css类:

modalDialog.add(AttributeAppender.append("class", "custom-1"));

然后在.css文件中添加css规则,例如:

.modal-dialog.custom-1 {
   width: 1234px;
}

.modal-dialog.custom-1 .modal-dialog-content {
   width: 1234px;
}

这取决于需要修改模态窗口的哪个元素。

相关问题