Janak,
In the past when if I wanted to show [...] on the a JTable to pop an
extra-item related to that column I extended the TableCellEditor which
returns a Component somewhat like the following code:
public Component getTableCellEditorComponent(JTable table, Object value ,
boolean isSelected, int row, int column){
JPanel panel = new JPanel(new BorderLayout());
if (rowModel!=null)
tmpEditor = rowModel.getEditor(row);
panel.add(tmpEditor);
panel.add(customEditorButton, BorderLayout.EAST);
return panel;
}
However, I can't do this in ULC because ITableCellEditor requires a
IEditorComponent. How can I add a [...] a ULCTable row?
Extension?
Thanks
Mario
Abacus Research AG
_______________________________________________
ULC-developer mailing list
[email protected]
http://lists.canoo.com/mailman/listinfo/ulc-developer