Problem: When I up the website it is showing a strange behaviour, sometimes comboboxes are not working ,sometimes problem in RadGrid.It is running perfectly at local server.
Here is sample code,
Here is sample code,
Here is sample code,
<body>
<form runat="server">
<form runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" />
...........
<telerik:RadGrid ID="RadGrid1" runat="server">
</telerik:RadGrid>
</telerik:RadGrid>
...........
</form>
</body>
Solution: It is because you are using RadScriptManager and it is conflicting with Telerik.StyleSheetManager.TelerikCdn.You can do EnableScriptCombine="false" and EnableHandlerDetection="false" (properties of RadScriptManager).</form>
</body>
Here is sample code,
<body>
<form runat="server">
<form runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" EnableScriptCombine="false" EnableHandlerDetection="false"></telerik:RadScriptManager>
<telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" DecoratedControls="All" />
...........
<telerik:RadGrid ID="RadGrid1" runat="server">
</telerik:RadGrid>
</telerik:RadGrid>
...........
</form>
</body>
</form>
</body>
And that is why Telerik needs to fix their crap so they don't conflict in the first place.
ReplyDelete