Yup, this is just about exactly what I did and it works like a charm.
Patch should be forthcoming tonight hopefully.
-Charles
Thomas Bruederli wrote:
Charles McNulty wrote:
[snip]
- I'm pretty stymied by the scrollbar problem with selecting messages
that are not on the visible part of the list. If anyone has any suggestions, I'd love to hear them.
I guess you have to compare the absolute position of the selected row within the table with the clipped height of the container div and its scroll offset:
var diff = this.list_rows[n].obj.offsetTop - (this.gui_objects.messagelist.parentNode.offsetHeight + this.gui_objects.messagelist.parentNode.scrollTop);
if (diff > 0) this.gui_objects.messagelist.parentNode.scrollTop += this.list_rows[n].obj.offsetHeight;
This is just a thought and not tested.
Regards, Thomas
-Charles
Dennis Duggen wrote:
Hi,
Yesterday i tried to navigate with keyboard (my mouse didn't work) in RC. It was less than a success since i couldn't get into my mails. The sender column is a link, so i could write new messages to people, but it wasn't really what i wanted. Therefor this feature request.
Is it possible to make the subject as a link, this way keyboard navigation would be possible.
Maybe it could be solution to the discussion about singe and double click to open new messages. If the entire row except subject and sender text would act on double click.
Any thoughts?
Regards,
Dennis