I am attempting to embed the telerik report viewer into an existing web application and am having problems with the report viewer not displaying correctly (see attachment toolbar.jpg).
I have done plenty of searching around the various forums and have come to the conclusion that the reason for the toolbar not being displayed correctly is because the page's HEAD tag does not contain runat="server".
Unfortunately, our web project requires that runat="server" cannot be set in the head (as other aspects of the application will fail). IS there a way to get the report viewer working in this way?
I have attached the HTML code for a test app which simulates this behaviour.
Many thanks in advance
MIke
I have done plenty of searching around the various forums and have come to the conclusion that the reason for the toolbar not being displayed correctly is because the page's HEAD tag does not contain runat="server".
Unfortunately, our web project requires that runat="server" cannot be set in the head (as other aspects of the application will fail). IS there a way to get the report viewer working in this way?
I have attached the HTML code for a test app which simulates this behaviour.
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
div
>
<
telerik:ReportViewer
ID
=
"rptViewer"
runat
=
"server"
SkinsPath
=
"skins"
Skin
=
"orange"
>
</
telerik:ReportViewer
>
</
div
>
</
form
>
</
body
>
</
html
>
Many thanks in advance
MIke