Won't Fix
Last Updated: 25 Apr 2016 12:48 by ADMIN
ADMIN
Telerik Admin
Created on: 06 Dec 2012 18:24
Category: FormDecorator
Type: Bug Report
1
FIX: Decorated HTML content does not work properly in RadWindowManager template

		
1 comment
ADMIN
Stanimir
Posted on: 25 Apr 2016 12:48
As a workaround there can be added the following OnClientShow handler to the RadWindowManager Client Show event.
function OnClientShow(sender, args) {
	var container = sender.get_contentElement();
	var formDecorator = $find("radCheckBoxDecorator");
	$telerik.$('.rfdRealInput', container).removeClass('rfdRealInput');
	formDecorator.decorate(container);
}