Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Telerik control layout issues - Visual Studio 2013

I recently installed Visual Studio 2013 on my machine along side 2012. We have several web applications (ASP.NET and MVC) that utilize Telerik controls. Today I noticed accordion controls (expanders) are fully expanded and the contents within are stacked one on top of the other. Additionally, some of the container controls are skewed. Has anyone run into this same issue? Upgrading to the latest Telerik tools has not helped. However, running the same application in Visual Studio 2012 works as expected.

like image 858
alan Avatar asked Nov 11 '13 20:11

alan


Video Answer


1 Answers

After one more google attempt I found this line (added to the web.config) to be the fix I was looking for:

<appSettings>
   <add key="vs:EnableBrowserLink" value="false"/>
</appSettings>

Visual Studio 2013 inserts some markup in every page to enhance runtime debugging, the line above prevents that markup from being added.

like image 79
alan Avatar answered Sep 22 '22 15:09

alan