como fazer isso com o Jtable
cb_uf.setSelectedItem(con_cidade.resultset.getString(“uf”)); ?
como fazer isso com o Jtable
cb_uf.setSelectedItem(con_cidade.resultset.getString(“uf”)); ?
table.getSelectionModel().setSelectionInterval(index0, index1);
E seu TableModel poderia ter um metodo bem util estilo indexOf e voce faria assim.
int linha = model.indexOf(objeto);
table.getSelectionModel().setSelectionInterval(linha, linha);