JdateChooser anidados

Iniciado por FISH in the house, 21 Febrero 2017, 16:43 PM

0 Miembros y 1 Visitante están viendo este tema.

FISH in the house

hola a todos, tengo un problemilla con el jdatechooser, tengo dos jdatechooser y quiero que uno sea dependiente del otro, es decir quiero que si en el primer jdatechooser escogen 2017, en el segundo jdatechooser se ponga tambien el 2017 y el usuario no lo pueda modificar...
les dejo mi codigo para obtener los datos de los jdatechooser

       String dia = Integer.toString(jdt.getCalendar().get(Calendar.DAY_OF_MONTH));
       String mes = Integer.toString(jdt.getCalendar().get(Calendar.MONTH)+1);
       String año = Integer.toString(jdt.getCalendar().get(Calendar.YEAR));
       String fecha1 = año + "-" + mes +"-"+dia;
       
       String dia2 = Integer.toString(jdt2.getCalendar().get(Calendar.DAY_OF_MONTH));
       String mes2 = Integer.toString(jdt2.getCalendar().get(Calendar.MONTH)+1);
       String año2 = Integer.toString(jdt2.getCalendar().get(Calendar.YEAR));
       String fecha2 = año2 + "-" + mes2 +"-"+dia2;


si me pudieran ayudar estaria muy agradecido por favor