Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
thnaks for your reply. i solved my issues just like this function :
public void setSkinThemeAllControls(System.Web.UI.ControlCollection CC, String themeName)
{
foreach (Control child in CC)
setSkinThemeAllControls(child.Controls, themeName);
switch (child.GetType().ToString())
case "Telerik.Web.UI.RadCalendar":
Telerik.Web.UI.
RadCalendar control1 = (Telerik.Web.UI.RadCalendar)child;
control1.Skin = themeName;
break;
case "Telerik.Web.UI.RadChart":
RadChart control2 = (Telerik.Web.UI.RadChart)child;
control2.Skin = themeName;
break; . . . . . . } and i called this function from a page just like :
CsSkin.setSkinThemeAllControls(
this.Controls, "Vista")