Re: [css-d] Scrollable table body again

2011-03-29 Thread HallMarc Websites
Seem to be missing a link to your instance. __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies --

Re: [css-d] Scrollable table body again

2011-03-29 Thread Markus Ernst
Am 29.03.2011 14:18 schrieb HallMarc Websites: Seem to be missing a link to your instance. Sure: http://www.wisental-horgen.ch/angebot/suche.php (I am aware of the fact that the page does not validate. The errors are the target attribute, which is re-allowed in HTML5, and the br / outputted

Re: [css-d] Scrollable table body again

2011-03-29 Thread Barney Carroll
Hiya Markus, The problem is that jQuery dynamically introduces styles properties per-element and attaches them via the object's style attribute. You could over-ride this with !important print rules though. If you don't already have a print-only stylesheet, add it like so: link rel=stylesheet

Re: [css-d] Scrollable table body again

2011-03-29 Thread HallMarc Websites
Ok first for IE 9 the jquery 1.5 is not working. They are aware of this bug and the fix for now is to roll back to 1.4.4 for the scroller to work in IE 9. I also agree that setting up a link rel=stylesheet type=text/css media=print href=print.css / to handle the print layout.

Re: [css-d] Scrollable table body again

2011-03-29 Thread Markus Ernst
Am 29.03.2011 15:11 schrieb Barney Carroll: The problem is that jQuery dynamically introduces styles properties per-element and attaches them via the object's style attribute. You could over-ride this with !important print rules though. Cool! I was not aware of the fact that !important is

Re: [css-d] Scrollable table body again

2011-03-29 Thread Markus Ernst
Am 28.03.2011 23:43 schrieb Markus Ernst: I had to implement a table with a scrollable body and a fixed header for a client. [...] Has there been any movement on this topic since then? While it might be difficult from an implementation POV - from an authoring POV it would look consistent to

Re: [css-d] Scrollable table body again

2011-03-29 Thread Philippe Wittenbergh
On Mar 30, 2011, at 6:08 AM, Markus Ernst wrote: Currently there does not seem to be any good browser support for it - I tested this testcase: http://www.markusernst.ch/stuff_for_the_world/table-scroll-test.html IE 8, Opera 11 and Chrome 10 do nothing, which is better than Firefox 3.6

[css-d] Scrollable table body again

2011-03-28 Thread Markus Ernst
Hello I had to implement a table with a scrollable body and a fixed header for a client. While searching for solutions I found an approach that seems to work ok, but requires fixed column widths: http://www.imaputz.com/cssStuff/bigFourVersion.html Another one, discussed in this list, allows