I'm using Netbeans and I've designed a window with JTable and added MouseEvent listener on JTable component and added this code:

private void productsTableMousePressed(java.awt.event.MouseEvent evt) {
    if(evt.isPopupTrigger()) {
        tablePopupMenu.setLocation(evt.getXOnScreen(), evt.getYOnScreen());
        tablePopupMenu.setVisible(true);
        System.out.println("Fired!");
    }
}

private void productsTableMouseReleased(java.awt.event.MouseEvent evt) {
    if(evt.isPopupTrigger()) {
        tablePopupMenu.setLocation(evt.getXOnScreen(), evt.getYOnScreen());
        tablePopupMenu.setVisible(true);
    }
}

But it works only when I click on some cells. I want to get it working on whole JTable area. How?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

Assuming your table is inside a JScrollPane, it may not cover the entire viewport. To ensure the whole area of your viewport is covered, call setFillsViewportHeight(true) on your table.

link|improve this answer
Yes, you are right, that was my problem :) I figured it out few moments ago. But, thank you for this method because i solved it triggering mousePressed on JScrollPane, but your solutions sounds better. – Mikołaj Stolarski Jan 18 at 12:38
+1, good guess. – camickr Jan 18 at 15:49
Not many people seem to know how to interact with a JScrollPane properly. I myself am still struggling with it more than I'd like. – jackrabbit Jan 18 at 17:52
feedback

But it works only when I click on some cells, but i want to get it working on whole JTable area

The MouseListener will work on all cells. I don't know if you should be using the setLocation(...) method.

See Bringing Up a Popup Menu for example code.

Or a better approach is to use:

table.setComponentPopupMenu(...);
link|improve this answer
1  
+1 for componentPopupMenu - that's the way to do it :-) The tutorial is outdated ... – kleopatra Jan 18 at 8:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.