After long time i am writing this tips on my blog.
This is very small but usefull trick about telerik controls.
Telerik controls like “Tree View”, runs fine in Internet explorer but it fails loading CSS in Mozilla or chrome. To overcome this, use below line of code in Page_Load method.
protected void Page_Load(object sender, EventArgs e) { RadTreeView1.EnableAjaxSkinRendering = true; }
I hope this would help. 🙂
Leave a Reply