Hello,
I have a JTable in which one column consists of a custom component which
has the ability to handle mosue events (rotate a molecule).
I have set up the table to display the custom component - but when I try
and rotate the molecule nothing happens. I realzie that events are not
being sent to the component.
My question how can I set up the JTable such that mouse events (or any
event in general) can be sent to my custom component (by simply calling
the handleEvent() function of my component)
Thanks,
Nicholas Pappas - 27 May 2004 14:51 GMT
> My question how can I set up the JTable such that mouse events (or any
> event in general) can be sent to my custom component (by simply calling
> the handleEvent() function of my component)
They should automatically. If you handle the events in the component,
they should reach their destination.
How are you applying the the component to the JTable cell? What does
your even handling look like?