Skip to Content
0
Former Member
Oct 21, 2005 at 05:16 AM

How to Create Popup menu for my webdynpro app

33 Views

Hi All,

I want to create a popup menu for my webdynpro application,for a right click popup menu should come,

I have tried it by

public void wdDoInit()

{

JPopupMenu menu = new JPopupMenu();

JMenuItem item = new JMenuItem("Item 1");

menu.add(item);

}

but i can't add any mouse listner to my root

container to view this popup.

Plz help me?

Sanjay