0
I managed to do but only works with pre-selected items.
CidadeDAO cidadeDAO = new CidadeDAO(connection);
EstadoDAO estadoDao = new EstadoDAO(connection);
List<ModeloEstado> estados = estadoDao.lista();
jComboBoxEstado.removeAllItems();
jComboBoxCidade.removeAllItems();
for(ModeloEstado c : estados ){
jComboBoxEstado.addItem(c.getNome());
}
jComboBoxEstado.setSelectedIndex(4);
System.err.println(jComboBoxEstado.getSelectedItem());
List<ModeloCidades> cidadeCombo = cidadeDAO.buscaIdPorEstado((String) jComboBoxEstado.getSelectedItem());
for(ModeloCidades c : cidadeCombo){
jComboBoxCidade.addItem(c.getNome());
}
but I would like to make sure that when selecting an item in the state combobox, modify the city cobobox with the items already registered in the bank.
It worked here thanks so much for the help.
– danilo pelusci