I've built a web app that incorporates the web report viewer. The page containing the viewer has the following doctype
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
This results in the border of the report viewer rendering incorrectly. it's simple enough to check just create apage with the report viewer included and add and remove the doctype to see the effect.
The only doctype that I've found that works is
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
or to use no doctype.
either of these solutions results in the vertical scrollbar space being reserved even though it is not required.
Any ideas?