• 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:
  • Campbell Ritchie
  • Devaka Cooray
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Jeanne Boyarsky
  • Tim Cooke
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
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:

 
Hey, check out my mega multi devastator cannon. It's wicked. It makes this tiny ad look weak:
a bit of art, as a gift, that will fit in a stocking
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic