Telerik control layout issues - Visual Studio 2013

夙愿已清 提交于 2019-12-01 04:01:23

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/19915504/telerik-control-layout-issues-visual-studio-2013

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!