I have a jTable as from the attached picture enter image description here

Right click on a row starts a jPopup, with a single item "Thread Stop".

I would like to return the row number by clicking on this menu item

How to accomplish this?

Thanks.

link|improve this question

71% accept rate
What do you plan to do with the row number? – trashgod Feb 19 at 18:56
Can you add some code where you associate jPopup content "Thread Stop" with a specific row number? It seems you are able to associate them right so you should be able to access row number easily. – fakihjaan Feb 19 at 19:01
feedback

2 Answers

up vote 4 down vote accepted

In your MouseListener where you show your popup, simply get the row and column numbers via the JTable methods:

  table.addMouseListener(new MouseAdapter() {
     @Override
     public void mousePressed(MouseEvent e) {
        Point p = e.getPoint();
        int row = table.rowAtPoint(p);
        int col = table.columnAtPoint(p);

        System.out.printf("row, col: [%d, %d]%n", row, col);

        // show pop-up menu here

     }
  });
link|improve this answer
1  
+1 for faster @Alberto acepsut look here stackoverflow.com/questions/7423533/jtable-with-jpopupmenu – mKorbel Feb 19 at 19:08
feedback

Your implementation of TableCellEditor includes the row as a parameter, but you should act only when the TableModel is updated, as shown here. TablePopupEditor is a related example.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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