Completed
Last Updated: 20 Jan 2022 15:38 by ADMIN
ADMIN
Marin Bratanov
Created on: 21 Aug 2013 10:41
Category: Window
Type: Bug Report
0
IMPROVE The predefined dialogs from RadWindowManager should not have an iframe element
This iframe element has an empty html tag that can cause issues with the Section 508 validation.
Also, the iframe is not used so it does not need to be present in the markup at all.

The following script added to the OnClientShow event of the RadWindowManager can remove this iframe:
		function OnClientShow(sender, args)
		{
			if (!sender._isPredefined) return; //check if it is a predefined dialog
			var frame = $telerik.$("iframe", sender.get_popupElement());
			frame.remove();
		}
1 comment
ADMIN
Rumen
Posted on: 20 Jan 2022 15:38

The predefined dialogs do not rely on iframe elements in Lightweight render mode.