jtable combo
i am using jtable (using defaulttablemodel) ,when i am click on a particular cell of jtable i want to display the combo box in that cell,plz provide program
View Answers
April 24, 2010 at 1:19 PM
Hi Friend,
Try the following code:
import java.awt.*;
import java.util.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.event.*;
import javax.swing.table.*;
import javax.swing.plaf.basic.*;
public class ComboBoxInTableCell {
public static void main(String[] args) {
JFrame f=new JFrame();
f.setLayout(new BorderLayout());
String data[][] = {{"",""},{"",""},{"",""},{"",""}};
String col[] = {"",""};
DefaultTableModel model = new DefaultTableModel(data,col);
JTable table = new JTable(model);
TableColumnModel tcm = table.getColumnModel();
for(int i=0;i<2;i++){
TableColumn tc= tcm.getColumn(i);
tc.setCellEditor(new ComboEditor());
}
JScrollPane jsp = new JScrollPane(table);
f.add(jsp, BorderLayout.CENTER);
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setSize(400, 300);
f.setVisible(true);
}
}
class ComboUI extends BasicComboBoxUI {
public JList getList() {
return listBox;
}
}
class ComboEditor extends JComboBox implements TableCellEditor, CaretListener {
protected EventListenerList listenerList = new EventListenerList();
protected ChangeEvent changeEvent = new ChangeEvent(this);
private ComboUI comboUi = new ComboUI();
private JTextField tf;
Object newValue;
public ComboEditor(){
super();
setUI(comboUi);
addItem("1");
addItem("2");
setEditable(true);
tf = (JTextField) getEditor().getEditorComponent();
tf.addCaretListener(this);
tf.addKeyListener(new KeyAdapter() {
public void keyReleased(KeyEvent e) {
if (e.getKeyCode() == e.VK_ENTER) {
Object value = comboUi.getList().getSelectedValue();
tf.transferFocus();
hidePopup();
}
}
});
addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
}
});
}
public void addCellEditorListener(CellEditorListener listener) {
listenerList.add(CellEditorListener.class, listener);
}
public void removeCellEditorListener(CellEditorListener listener) {
listenerList.remove(CellEditorListener.class, listener);
}
public void cancelCellEditing() {
}
public boolean stopCellEditing() {
return true;
}
public boolean isCellEditable(EventObject event) {
return true;
}
public boolean shouldSelectCell(EventObject event) {
return true;
}
public Object getCellEditorValue() {
tf.setText(newValue.toString());
return newValue;
}
public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected,
int row, int column) {
return this;
}
public void caretUpdate(CaretEvent e) {
if (!isPopupVisible() && tf.isShowing() && tf.hasFocus())
showPopup();
JTextField tf = (JTextField) e.getSource();
String text = tf.getText().toLowerCase();
int index = -1;
for (int i = 0; i < super.getItemCount(); i++) {
String item = ((String) getItemAt(i)).toLowerCase();
if (item.startsWith(text)) {
index = i;
break;
}
}
if (index != -1)
comboUi.getList().setSelectedIndex(index);
else
comboUi.getList().clearSelection();
newValue = comboUi.getList().getSelectedValue();
}
}
Thanks
November 12, 2011 at 6:27 PM
when i select an option in combo box for e.g. "city" & write city name in a text field for e.g. "Delhi" & click on button "show details", then i want a JTable to be displayed showing all the data from database having "city" as "Delhi".
later when i change option in combo box for e.g. "name" & write name in text field for e.g. "xyz" & click on button "show details", then i want the same previous(showing "city") JTable to now show all the data from database with "name" as "xyz".
so the data should be updated in JTable.
can you plz help me?
Related Tutorials/Questions & Answers:
jtable combo - Java Beginnersjtable combo i am using
jtable (using defaulttablemodel) ,when i am click on a particular cell of
jtable i want to display the
combo box...);
JTable table = new
JTable(model);
TableColumnModel tcm = table.getColumnModel
JTableJTable Values to be displayed in JTextfield when Clicked on
JTable Cells
Advertisements
JTableJTable i want to delete record from
JTable using a MenuItem DELETE. and values of
JTable are fetched from database....please reply soon
JTable JTable how to select a definite cell which containing a similar text containg to the one which the user entering from a
jtable at runtime in java
JTableJTable need to add values to a
JTable having 4 coloumns ,2 of them are comboboxes
JTableJTable Hello, i cannot display data from my table in the database to the cells of my
JTable. please help me
jtablejtable how to get the values from database into
jtable and also add a checkbox into it and then when selected the checkbox it should again insert into database the selected chewckbox.plzz help
jtablejtable hi
Sir
i am working netbeans IDE,I have a
jtable when i insert values in
jtable
then i am unable to print all inserted values,For eg if i insert 1,2,3,4,5,6,7,8 values
then , i am getting output
jtablejtable hey i have build a form and i m also able to add data from database to
jtable along with checkbox.the only problem is that if i select multiple checkboxes the data doesnt get inserted into new database and if only one
JTableJTable Hi
I have problems in setting values to a cell in
Jtable which is in a jFrame which implements TableModelListener which has a abstract method
tableChanged(TableModelEvent e) .
I'll be loading values from data base when
JTable"};
JTable table=new
JTable(data,labels);
JScrollPane pane=new JScrollPane
JTABLE OF JAVAJTABLE OF JAVA i have a
jtable in java,i have used checkbox in
jtable.
now i want to add(submit) only those records that i have checked by checkbox how?
i want small example with coding
Jtable-JavaJtable-Java Hi all,I have a
Jtable And i need to clear the data in the table .I only Need to remove the data in the table.not the rows.Please help me
sum in JTablesum in JTable how to calculate sum from
JTable's one field like total
Swings JTableSwings JTable add values to
JTable with four coloums,two of them are comboboxes
JTABLE IssueJTABLE Issue Hi Eveyone,
I am developing a small application on Swing-AWT. I have used
JTABLE to show data. There is "input field" and "search... on basis of input data provided in input field. For
JTABLE is on some other
jtable queryjtable query I need a syntax...where i could fetch the whole data from the database once i click the cell in
jtable...and that must be displayed in the nearby text field which i have set in the same frame
java jtablejava jtable Hello Sir, I am developing a desktop application in which i have to display database records in
jtable .now I want to read only... that in
jtable.
plz help me with the code
regarding jtable...regarding
jtable... sir,
im working with jtables. i wanted to populate a
jtable from the database and when i click any row it should add a container... a container on the
jtable.
kindly help me sir.
thanks in advance
regards,
rajahari
ABOUT JtableABOUT Jtable My Project is Exsice Management in java swing Desktop Application.
I M Use Netbeans & Mysql .
How can retrive Data in
Jtable from Mysql Database in Net Beans
jtable insert row swingjtable insert row swing How to insert and refresh row in
JTable?
Inserting Rows in a
JTable example
REPORT WITH JTABLE(Exception e){}
JTable table = new
JTable(data, columnNames);
JScrollPane scrollPane
JTable - JDBCJTable
Hello.....
I have
Jtable with four rows and columns and i have also entered some records in MsSql database. i want to increase
Jtable's...
{
JFrame f;
JPanel p;
JLabel l;
JTextField tf;
JButton btn;
JTable tb
JTable - Swing AWTJTable row selection event Hi, it will be great if someone can share an example of row selection event in
JTable combo boxcombo box Hi,
[_|] dropdown box
[ ] [INCLUDE] [ ]
| | [INCLUDE All
JTable PaginationJTable Pagination Hello , I have the following Code. I am able to fetch the Data from the Database. But i need to implement pagination for the same. Can someone please help me out with this ? I have tried out many things from
JTable in java - Java BeginnersJTable in java Sir , I have created an application with a
JTable showing the records of an MS Access database table. On the same frame I have... given one ,
JTable table; ....... .... table.print(); Here the error
restrict jtable editingrestrict
jtable editing How to restrict
jtable from editing or
JTable disable editing?
public class MyTableModel extends...){
return false;
}
}
Disabling User Edits in a
JTable Component
combo boxescombo boxes how do you store numbers in the choices. ex. soda is $.75 and tax is $.07 then it equals a new total. I've been trying to use the Itemlistener but i can't figure out how to store the numbers
import javax.swing.
ModuleNotFoundError: No module named 'combo'ModuleNotFoundError: No module named '
combo' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
combo'
How to remove the ModuleNotFoundError: No module named '
combo'
ModuleNotFoundError: No module named 'combo'ModuleNotFoundError: No module named '
combo' Hi,
My Python program is throwing following error:
ModuleNotFoundError: No module named '
combo'
How to remove the ModuleNotFoundError: No module named '
combo'
JTable - Java BeginnersJTable search example I've problem about
JTable, i wan to search records when i types words in
JTable cell,can u give the source code.I'm Beginner and i start begins learning java programming.Please send the example into my
regarding JTable - JDBCregarding JTable how to populate a
JTable with mysql data after clicking JButton
please explain with the example
Jtable with servlet - Java BeginnersJtable with servlet
Actually I have embedded the html... time I want the
JTable to display the record saved in the database,the
JTable... of the page and the bottom half will consists of
JTable to display the record information
date in combo boxdate in
combo box strong texthello,
how can i desplay the current year and next year in
combo box???!!!
it must be uppdate atumaticaly every year>>>
assigning arraylist to combo boxassigning arraylist to
combo box Hi
I am busy coding the Airline Reservation program, i have an arraylist of locations which i want to assing to the
combo box. please help
Jbutton in JTable cellsJbutton in
JTable cells I am a Java Beginner... I want a code in which
I display data in
Jtable from database and correspondingly a JButton for each cell and when i click on that button a new window should open
JTable populate with resultset.JTable populate with resultset. How to diplay data of resultset using
JTable?
JTable is component of java swing toolkit.
JTable class is helpful in displaying data in tabular format. You can also edit data.
JTable JTable with Date PickerJTable with Date Picker Hi,
I'd like to implement the following but I have no idea where to start:
I have a
JTable with 1 column containing... in the backing object(that populated the
JTable jtable query compare with datejtable query compare with date how to transfer daytable data... in which i have to display database records in
jtable .now I want to transfer particular data which month is over to another
jtable.
plz sir give me the code