on TableHeader, I try to make a right click with the mouse as follow :
tableHeader.click(MouseEvent.BUTTON3);
but this is not working, have you any idea/suggestion ?
thanks,
if it is because you want to show a popupmenu then you can do it like this::
popupMenu.show(tableHeader, 0, 0);
if it is because you want to get into a mouselistener like:
class MyMouseListener implements MouseListener{ @Override public void mouseReleased(MouseEvent arg0) { if(SwingUtilities.isRightMouseButton(arg0)){ //my code } } //...
then you can put your code into a method and open the method
//open the method: myMouseListenerReplacement(); //the method private void myMouseListenerReplacement(){ //My code }
1.4m articles
1.4m replys
5 comments
57.0k users