Examples of addOpenerAttributesTo()


Examples of de.agilecoders.wicket.core.markup.html.bootstrap.dialog.TextContentModal.addOpenerAttributesTo()

    // DraggableConfig().withHandle(".modal-header").withCursor("move")));
    // draggableModal.add(new Resizable());
    draggableModal.setUseKeyboard(true).addCloseButton();
    draggableModal.setFadeIn(false);
    Label draggableButton = new Label("open-draggable", "Open Modal Dialog");
    draggableModal.addOpenerAttributesTo(draggableButton);
    add(draggableModal, draggableButton,
        new Code("draggable-code", Model.of("")));

    DropDownButton dropDownButton = new DropDownButton("dropdown",
        Model.of("open-on-hover")) {
View Full Code Here

Examples of de.agilecoders.wicket.samples.components.basecss.DatePickerModal.addOpenerAttributesTo()

        modal.show(false);
        modal.size(Modal.Size.Small);
        modal.setUseKeyboard(true);
        BootstrapButton modalButton = new BootstrapButton("modal-opener", Buttons.Type.Default);
        modalButton.setLabel(Model.of("Open Modal Dialog"));
        modal.addOpenerAttributesTo(modalButton);

        add(modal, modalButton);
    }

    private Component newDatePicker(String markupId, DateTextFieldConfig dateTextFieldConfig) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.