Hi, I have a website with a lot of telerik Controls.
I have a master page with the radScriptManager in it :
    
And in my content page i have :
    
Is it enough to make it work properly?
Are all the javascript of telerik control already managed by the radscript manager or do i have to declare something else inside?
Will the Javascript of my Content page be managed by default by the radscriptmanager?
If i have Custom Css ON the content page like this
    
and also ONE css file (and just one) in the Css Folder.
Does I need to declare the radstylesheetmanager?
                                I have a master page with the radScriptManager in it :
| <telerik:RadScriptManager ID="RadScriptManager2" runat="server"> | 
| </telerik:RadScriptManager> | 
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> | 
| </telerik:RadAjaxManager> | 
And in my content page i have :
| <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> | 
| <link href="Css/Global.css" rel="stylesheet" type="text/css" /> | 
| <script type="text/javascript"> | 
| // A lot of functions here | 
| </script> | 
Is it enough to make it work properly?
Are all the javascript of telerik control already managed by the radscript manager or do i have to declare something else inside?
Will the Javascript of my Content page be managed by default by the radscriptmanager?
If i have Custom Css ON the content page like this
| <style type="text/css"> | 
| .rcbHeader ul, | 
| .rcbFooter ul, | 
| .rcbItem ul, .rcbHovered ul, .rcbDisabled ul | 
| { | 
| width: 100%; | 
| display: inline-block; | 
| margin: 0; | 
| padding: 0; | 
| list-style-type: none; | 
| } | 
| </style> | 
and also ONE css file (and just one) in the Css Folder.
Does I need to declare the radstylesheetmanager?