congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
DefaultAbstractTree.updateTree
Code IndexAdd Tabnine to your IDE (free)

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

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

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

  public void onClick(AjaxRequestTarget target)
  {
    getTreeState().selectNode(node, !getTreeState().isNodeSelected(node));
    onNodeLinkClicked(target, node);
    updateTree(target);
  }
});
origin: org.wicketstuff/wicket15-tree

  @Override
  public void onClick(final AjaxRequestTarget target)
  {
    getTreeState().selectNode(node, !getTreeState().isNodeSelected(node));
    onNodeLinkClicked(target, node);
    if (target != null)
    {
      updateTree(target);
    }
  }
});
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.treeDefaultAbstractTreeupdateTree

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
  • onJunctionLinkClicked
    Callback function called after user clicked on an junction link. The node has already been expanded/
  • newLink,
  • onJunctionLinkClicked,
  • onNodeLinkClicked,
  • onTargetRespond,
  • setModelObject,
  • add,
  • init,
  • renderHead

Popular in Java

  • Finding current android device location
  • getExternalFilesDir (Context)
  • scheduleAtFixedRate (Timer)
  • getSystemService (Context)
  • BigInteger (java.math)
    An immutable arbitrary-precision signed integer.FAST CRYPTOGRAPHY This implementation is efficient f
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • URLEncoder (java.net)
    This class is used to encode a string using the format required by application/x-www-form-urlencoded
  • DecimalFormat (java.text)
    A concrete subclass of NumberFormat that formats decimal numbers. It has a variety of features desig
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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