Dynamic JTable
Hello
I made a JTable with various columns, each column have a different Renderer and Editor. One of the columns is render with a JTextField. Now I must make a different thing: when I Select the option 'Date' in one of the JComboBoxes that is part of Table, the JTextField is substitued by an component of my own named DateInputField, that serves to input and output of Dates.
The problem is: when I select the option Date in combobox, the renderer doesn't change the JTextField for the DateInputField. I have tried to add an ActionListener to combobox, to call fireTableDataChanged(), but the listener only work when I exit the combo...
I was debugging and realized that in the editor of the column with the combo, the method getCellEditorValue() (from interface CellEditor) is called only when leave the cell / click on another component.
Someone have a light?

