Examples of PopOver


Examples of com.github.gwtbootstrap.client.ui.Popover

      modal.hide();
   }

   @Test
   public void testPopover() {
      Popover popover = new Popover();
      popover.setHeading("heading");
      popover.setText("conetnt");

      popover.setWidget(new Button("test"));

      popover.show();
      popover.hide();

      // for configure()
      popover.asWidget();
      this.getBrowserSimulator().fireLoopEnd();
   }
View Full Code Here

Examples of org.controlsfx.control.PopOver

        restClient.setMasterPassword(App.getInstance().getMastePassword());
        AddEditView addEditView = new AddEditView();
        AddEditPresenter addEditPresenter = (AddEditPresenter) addEditView.getPresenter();
        this.addEditPresenter = addEditPresenter;
        addEditPresenter.setBasePresenter(instance);
        addEditPopOver = new PopOver(addEditView.getView());
        addEditPopOver.setDetachedTitle("Add or Edit Password");
        filteredPasswords = new FilteredList<>(allPasswords);
        prepareTable();
        simpleSearchBox.setFilteredList(filteredPasswords);
        new Thread(() -> {
View Full Code Here

Examples of org.controlsfx.control.PopOver

        roundCorners(coverImageView, 10);

        Label maxPledgesWarning = new Label(String.format("You can collect a maximum of %d pledges, due to limits in the Bitcoin protocol.", ProjectModel.MAX_NUM_INPUTS));
        maxPledgesWarning.setStyle("-fx-font-size: 12; -fx-padding: 10");
        maxPledgesPopOver = new PopOver(maxPledgesWarning);
        maxPledgesPopOver.setDetachable(false);
        maxPledgesPopOver.setArrowLocation(PopOver.ArrowLocation.BOTTOM_CENTER);
        minPledgeEdit.focusedProperty().addListener(o -> {
            if (minPledgeEdit.isFocused())
                maxPledgesPopOver.show(minPledgeEdit);
View Full Code Here

Examples of org.wicketstuff.openlayers3.api.overlay.Popover

    @Override
    protected void onInitialize() {
        super.onInitialize();
        add(behavior = new PopoverBehavior(titleModel, contentModel));
        popover = new Popover(this, getTitleModel(), getContentModel());
    }
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.