Completed
Last Updated: 05 Jul 2013 12:03 by ADMIN
ADMIN
Marin Bratanov
Created on: 17 Jun 2013 15:44
Category: Window
Type: Bug Report
0
FIX The IconUrl property does not take effect in RadWindow with RenderMode=Lightweight
A custom icon is replaced with the default icon in the LightWeight renderMode. For the time being the custom icon can be forced by using the OnClientShow event of the control:
		function OnClientShow(sender)
		{
			sender.set_iconUrl(sender.get_iconUrl());
		}
0 comments