This is really useful. I've added it to about 6 forms already and it's very
portable.
Another gotcha is with radio buttons/checkboxes with the auto-refresh option
enabled. Simple workaround I found at LDD was to put in:
_doClick('$Refresh',this,null);
for my OnChange event for the radio button. What happened (ONLY in IE!) was
that the page would refresh and place focus at the radio button. This caused
the fixed portion at the top to "disappear". If you resized the window it would
"reappear". lol
Also, I noticed that I didn't like the margins that IE was putting in so I
added in:
Just began implementation...
This is really useful. I've added it to about 6 forms already and it's very portable.
Another gotcha is with radio buttons/checkboxes with the auto-refresh option enabled. Simple workaround I found at LDD was to put in:
_doClick('$Refresh',this,null);
for my OnChange event for the radio button. What happened (ONLY in IE!) was that the page would refresh and place focus at the radio button. This caused the fixed portion at the top to "disappear". If you resized the window it would "reappear". lol
Also, I noticed that I didn't like the margins that IE was putting in so I added in:
"TOPMARGIN=\"0\" LEFTMARGIN=\"0\" MARGINHEIGHT=\"0\" MARGINWIDTH=\"0\""
to my HTML Body Attributes.
Thanks again - I've used a good bit of tips/code from your site Jake!