Hi there,
I've tried to use positionedOffset to position a div-layer dynamically under a row in a table (event handling on the TR tag).
The positioning works without problems, but if I use IE 6 / 7 the content of the TR / TD tags disappears.
I've located the error in the implementation of the code which is defined here: http://dev.rubyonrails.org/changeset/7301
The problematic part is this one:
2240 if (position != 'static') return proceed(element);
If I change this to following code, everything works fine (And this code matches to the original changeset):
2240 if (position == 'static') return proceed(element);
Maybe it's just a error with the TR tag, this I haven't tested as yet.
Best regards
Peter Philipp