• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

jtable combo box value

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
how to get the combo box selected value in jtable in event

like tablemodellistener

i tryed

getRightPanel().getProtocolOptionsTreeTablePanel().getTreeTable().getModel().addTableModelListener(new javax.swing.event.TableModelListener
() {
public void tableChanged(TableModelEvent e) {


int i=getRightPanel().getProtocolOptionsTreeTablePanel().getTreeTable().getSelectedRow();
int j=getRightPanel().getProtocolOptionsTreeTablePanel().getTreeTable().getSelectedColumn();
String ss=getRightPanel().getProtocolOptionsTreeTablePanel().getTreeTable().getValueAt(i,j).toString();
System.out.println(i+"row"+j+"value"+ss);



}
});

please help me
 
Sheriff
Posts: 14691
16
Eclipse IDE VI Editor Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"gowtham cow",
Check your Private Messages. You've already been told to do so a couple of times. This is your last warning.
 
Rancher
Posts: 3324
32
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The TableModelEvent has all the information you need to get the current value in the model:

 
reply
    Bookmark Topic Watch Topic
  • New Topic