congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
DefaultAbstractTree.onJunctionLinkClicked
Code IndexAdd Tabnine to your IDE (free)

How to use
onJunctionLinkClicked
method
in
org.apache.wicket.extensions.markup.html.tree.DefaultAbstractTree

Best Java code snippets using org.apache.wicket.extensions.markup.html.tree.DefaultAbstractTree.onJunctionLinkClicked (Showing top 2 results out of 315)

origin: org.ops4j.pax.wicket/pax-wicket-service

  public void onClick(AjaxRequestTarget target)
  {
    if (isNodeExpanded(node))
    {
      getTreeState().collapseNode(node);
    }
    else
    {
      getTreeState().expandNode(node);
    }
    onJunctionLinkClicked(target, node);
    updateTree(target);
  }
});
origin: org.wicketstuff/wicket15-tree

  @Override
  public void onClick(final AjaxRequestTarget target)
  {
    if (isNodeExpanded(node))
    {
      getTreeState().collapseNode(node);
    }
    else
    {
      getTreeState().expandNode(node);
    }
    onJunctionLinkClicked(target, node);
    if (target != null)
    {
      updateTree(target);
    }
  }
});
org.apache.wicket.extensions.markup.html.treeDefaultAbstractTreeonJunctionLinkClicked

Javadoc

Callback function called after user clicked on an junction link. The node has already been expanded/collapsed (depending on previous status).

Popular methods of DefaultAbstractTree

  • getNodeIcon
    Returns the resource reference for icon of specified tree node.
  • getCSS
    Returns the resource reference of default stylesheet.
  • getFolderClosed
    Returns the resource reference of default closed tree folder.
  • getFolderOpen
    Returns the resource reference of default open tree folder.
  • getItem
    Returns the resource reference of default tree item (not folder).
  • getLinkType
    Returns the current type of links on tree items.
  • getTreeState
  • invalidateAll
  • isNodeExpanded
  • newJunctionImage
    Creates an image placed on junction link. This image actually consists of two spans with different c
  • newLink
    Creates a link of type specified by current linkType. When the links is clicked it calls the specifi
  • onNodeLinkClicked
    This callback method is called after user has selected / deselected the given node.
  • newLink,
  • onNodeLinkClicked,
  • onTargetRespond,
  • setModelObject,
  • updateTree,
  • add,
  • init,
  • renderHead

Popular in Java

  • Creating JSON documents from java classes using gson
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • findViewById (Activity)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • BoxLayout (javax.swing)
  • Join (org.hibernate.mapping)
  • Top 15 Vim Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now