public void addRowsAntGrouping(){
Vector vectorAddRow = new Vector();
vectorAddRow.add("");
vectorAddRow.add("");
((DefaultTableModel)jTableAntGrouping.getModel()).addRow(vectorAddRow);
}
Hi,
I am in need of replacing the textfield of a table with combobox. the rows in the table are declared as vectors. there are two fields in the table. the first field is text and second is a combobox. can u please help me. thanx in advance.