Completed
Last Updated: 24 Jul 2013 07:58 by ADMIN
ADMIN
Marin Bratanov
Created on: 13 Jun 2013 12:59
Category: Window
Type: Bug Report
1
FIX On a subsequent page load (page refresh, postback, navigation) when ShowContentDuringLoad=false in LightWeight RenderMode the content page height shrinks
Possible workarounds:
1) the following CSS rule:
		.rwExternalContent iframe
		{
			height: 100%;
		}

OR

2) some JavaScript attached to the OnClientPageLoad event of the control:
			function OnClientPageLoad(sender)
			{
				sender.get_contentFrame().style.height = "100%";
			}
0 comments