• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

JTree help

 
Ranch Hand
Posts: 150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

I have Jtree and popup menu associated with tree. I have different menu items in popup menu. when i start editing tree node I want to show popup with undo,cut,copy,paste etc operation to be performed on editing tree node text.

How to do this any idea ???
 
Ranch Hand
Posts: 194
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Extend the DefaultMutableTreeNode to have a boolean array flaggin what are the options allowed for that node.
Attach the Popup Listener to this node and check the validity of these options before populating the Popup menu with the options. If valid enable else disable them. That is the simplest approach i can think of.
Hope that helps!!
 
reply
    Bookmark Topic Watch Topic
  • New Topic