Question

Can someone help me with this listener?

table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); 
table.getSelectionModel().addListSelectionListener(new ListSelectionListener(){
    public void valueChanged(ListSelectionEvent e){
        if(e.getValueIsAdjusting()){
            ListSelectionModel model = table.getSelectionModel();  
            int lead = model.getLeadSelectionIndex(); 
            displayRowValues(lead);
        }
    }
    private void displayRowValues(int rowIndex){
        String country = "";   
        Object oCountry = table.getValueAt(rowIndex, 0);  
        country += oCountry.toString();
        countryTxt.setText(country );
    }
});

It's supposed to send data from cell in jtable (table) into a textfield (countryTxt) when one of the row's is selected, but it works only when I click on row and not when I'm cycling trough my table with arrow key's.

Was it helpful?

OTHER TIPS

The problem is with this line:

if (e.getValueIsAdjusting()) { 

Replace this with:

if (e.getValueIsAdjusting()) return;

This is a check for multiple selection events BTW.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top