Codota Logo
Panel.setOutputMarkupId
Code IndexAdd Codota to your IDE (free)

How to use
setOutputMarkupId
method
in
org.apache.wicket.markup.html.panel.Panel

Best Java code snippets using org.apache.wicket.markup.html.panel.Panel.setOutputMarkupId (Showing top 17 results out of 468)

  • Common ways to obtain Panel
private void myMethod () {
Panel p =
  • Codota IconString id;new EmptyPanel(id)
  • Smart code suggestions by Codota
}
origin: stackoverflow.com

 private void changePanel() {
  Panel newpanel = getNewPanel(); // Or pass as arg to this function
  newpanel.setOutputMarkupId(true);
  currentpanel.replaceWith(newpanel);
  currentpanel = newpanel;
  target.add(currentpanel);
}
origin: com.premiumminds/pm-wicket-utils

public void setContainer(Panel panel){
  add(panel);
  panel.setOutputMarkupId(true);
}

origin: org.openengsb.ui/org.openengsb.ui.common

  @Override
  public void onClick() {
    try {
      Panel newPanel = webtaskboxService.getTaskPanel(task, "taskPanel");
      newPanel.setOutputMarkupId(true);
      panel.replaceWith(newPanel);
      panel = newPanel;
    } catch (TaskboxException e) {
      LOGGER.error("Taskbox panel could not be started", e);
    }
  }
};
origin: com.premiumminds/pm-wicket-utils

private void removeDrawer(MarkupContainer previous, AjaxRequestTarget target) {
  Panel panel = new EmptyPanel("next");
  panel.setOutputMarkupId(true);
  previous.addOrReplace(panel);
  target.add(panel);
}
origin: org.opensingular/singular-wicket-utils

  @Override
  protected void populateItem(ListItem<Pair<String, Integer>> item) {
    Panel panel = tabMap.get(item.getModelObject());
    if (item.getIndex() == 0) {
      panel.add($b.classAppender("active"));
    }
    item.add(panel);
    panel.setOutputMarkupId(true);
  }
};
origin: org.opensingular/wicket-utils

  @Override
  protected void populateItem(ListItem<Pair<String, Integer>> item) {
    Panel panel = tabMap.get(item.getModelObject());
    if(item.getIndex() == 0){
      panel.add($b.classAppender("active"));
    }
    item.add(panel);
    panel.setOutputMarkupId(true);
  }
};
origin: com.premiumminds/pm-wicket-utils

public void removeItem(AjaxRequestTarget target){
  Panel panel = new EmptyPanel("container");
  addOrReplace(panel);
  panel.setOutputMarkupId(true);
  panel.setVisible(false);
  target.add(panel);
}

origin: org.wicketstuff/spring-webflow

flowPanel.setOutputMarkupId(true);
contentPanel.replaceWith(flowPanel);
contentPanel= flowPanel;
origin: webanno/webanno

annotationDocumentStatusTable = new DefaultDataTable("rsTable", columns,
    provider, 20);
annotationDocumentStatusTable.setOutputMarkupId(true);
monitoringDetailForm.add(annotationDocumentStatusTable);
origin: de.tudarmstadt.ukp.clarin.webanno/webanno-monitoring

annotationDocumentStatusTable = new DefaultDataTable("rsTable", columns,
    provider, 20);
annotationDocumentStatusTable.setOutputMarkupId(true);
monitoringDetailForm.add(annotationDocumentStatusTable);
origin: apache/syncope

  public Details(final SchemaTO modelObject) {
    AjaxDropDownChoicePanel<SchemaType> kind =
        new AjaxDropDownChoicePanel<>("kind", getString("kind"), new Model<>());
    kind.setChoices(Arrays.asList(SchemaType.values()));
    kind.setOutputMarkupId(true);
    kind.setModelObject(schemaType);
    kind.setEnabled(false);
    add(kind);
    Panel detailsPanel;
    switch (schemaType) {
      case DERIVED:
        detailsPanel = new DerSchemaDetails("details", (DerSchemaTO) modelObject);
        break;
      case VIRTUAL:
        detailsPanel = SyncopeWebApplication.get().getVirSchemaDetailsPanelProvider().
            get("details", (VirSchemaTO) modelObject);
        break;
      case PLAIN:
      default:
        detailsPanel = new PlainSchemaDetails("details", (PlainSchemaTO) modelObject);
    }
    detailsPanel.setOutputMarkupId(true);
    add(detailsPanel);
  }
}
origin: org.wicketstuff/jquery

content.setOutputMarkupId(true);
contents.add(content);
WebMarkupContainer title = new WebMarkupContainer(TAB_PANEL_ID+"-title"+i);
origin: net.ontopia/ontopoly-editor

treePanel.setOutputMarkupId(true);
add(treePanel);
origin: ontopia/ontopia

treePanel.setOutputMarkupId(true);
add(treePanel);
origin: apache/syncope

public BaseModal(final String id) {
  super(id);
  form = new Form<>(FORM);
  form.setOutputMarkupId(true);
  add(form);
  content = new AbstractModalPanel<T>(this, null) {
    private static final long serialVersionUID = 1L;
  };
  content.setOutputMarkupId(true);
  form.add(content);
  useCloseHandler(true);
  this.windowClosedCallback = null;
  components = new ArrayList<>();
  // Note: not adding this would imply adding WebjarsJavaScriptResourceReference about JQuery resizable and mouse
  // add(new Resizable().withChildSelector(".modal-content"));
  // Note: not adding this would imply adding of WebjarsJavaScriptResourceReference about JQuery draggable
  add(new Draggable(new DraggableConfig().withHandle(".modal-header").withCursor("move")));
  defaultModalCloseButton = new DefaultModalCloseButton();
  addButton(defaultModalCloseButton);
  setUseKeyboard(true);
  setFadeIn(true);
}
origin: ontopia/ontopia

 treePanel.setOutputMarkupId(true);
 form.add(treePanel);
} else {
origin: net.ontopia/ontopoly-editor

 treePanel.setOutputMarkupId(true);
 form.add(treePanel);
} else {
org.apache.wicket.markup.html.panelPanelsetOutputMarkupId

Popular methods of Panel

  • renderHead
    Check the associated markup file for a wicket header tag
  • onBeforeRender
  • onInitialize
  • onConfigure
  • onComponentTag
  • onDetach
  • setVisible
  • add
  • setDefaultModel
  • onAfterRender
  • detachModel
  • detachModels
  • detachModel,
  • detachModels,
  • getId,
  • onModelChanged,
  • remove,
  • replaceWith,
  • getMarkupId,
  • onComponentTagBody,
  • setMarkupId

Popular in Java

  • Reactive rest calls using spring rest template
  • addToBackStack (FragmentTransaction)
  • orElseThrow (Optional)
  • requestLocationUpdates (LocationManager)
  • HttpServer (com.sun.net.httpserver)
    This class implements a simple HTTP server. A HttpServer is bound to an IP address and port number a
  • SocketTimeoutException (java.net)
    This exception is thrown when a timeout expired on a socket read or accept operation.
  • Properties (java.util)
    The Properties class represents a persistent set of properties. The Properties can be saved to a st
  • Scanner (java.util)
    A parser that parses a text string of primitive types and strings with the help of regular expressio
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • TimerTask (java.util)
    A task that can be scheduled for one-time or repeated execution by a Timer.
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now