Hi,
I disabled all EmbeddedScripts and style sheets for all telerik controls in my application and put everything in one combined file.
Eveything works as expected, apart from the TreeView Control. Every page with the TreeView control still fetches a javascript file from the webresource handler
I don't understand why, as every other telerik control I use (RadMenu, RadRotator, RadSlider etc.) behaves correctly and doesn't request any additional files.
Below the settings I use
and the RadScriptManager in my master page
To summarize, I don't want that any telerik control to request any files (js, css)
Regards, Deval
I disabled all EmbeddedScripts and style sheets for all telerik controls in my application and put everything in one combined file.
Eveything works as expected, apart from the TreeView Control. Every page with the TreeView control still fetches a javascript file from the webresource handler
function
WebForm_PostBackOptions(eventTarget, eventArgument, validation, validationGroup, actionUrl, trackFocus, clientSubmit) {
this
.eventTarget = eventTarget;
.......
I don't understand why, as every other telerik control I use (RadMenu, RadRotator, RadSlider etc.) behaves correctly and doesn't request any additional files.
Below the settings I use
<
telerik:RadTreeView
ID
=
"categorynavigation"
ViewStateMode
=
"Disabled"
Runat
=
"server"
EnableEmbeddedScripts
=
"false"
EnableEmbeddedSkins
=
"false"
EnableEmbeddedBaseStylesheet
=
"false"
RegisterWithScriptManager
=
"false"
onnodedatabound
=
"categorynavigation_NodeDataBound"
onprerender
=
"categorynavigation_PreRender"
ClientIDMode
=
"Static"
></
telerik:RadTreeView
>
and the RadScriptManager in my master page
<
telerik:RadScriptManager
ID
=
"rsmMaster"
runat
=
"server"
ScriptMode
=
"Release"
LoadScriptsBeforeUI
=
"false"
AjaxFrameworkMode
=
"Disabled"
EnableScriptCombine
=
"False"
EnablePageMethods
=
"False"
EnableScriptLocalization
=
"False"
EnableScriptGlobalization
=
"False"
EnablePartialRendering
=
"False"
EnableHandlerDetection
=
"False"
EnableViewState
=
"false"
CompositeScript-NotifyScriptLoaded
=
"False"
CompositeScript-ScriptMode
=
"Release"
OutputCompression
=
"Disabled"
>
<
CdnSettings
TelerikCdn
=
"Disabled"
/>
<
Scripts
>
</
Scripts
>
</
telerik:RadScriptManager
>
To summarize, I don't want that any telerik control to request any files (js, css)
Regards, Deval