This question is locked. New answers and comments are not allowed.
Hi,
I've got a Master Page file with the following definition:
Then I have a page Loaded by ajax and I would like to use the ScriptRegistered in the Master file.
I tried copying this code into the Ajax Page but it won't work. any ideas? thank you
I've got a Master Page file with the following definition:
| <% |
| //Plugins: Autocomplete, Form, Tootlip, UI |
| Html.Telerik().ScriptRegistrar().DefaultGroup( |
| group => |
| group.Add("jquery.qtip-1.0.0-rc3.min.js") |
| .Add("jquery-ui-1.7.2.custom.min.js") |
| .Add("jquery.form.js") |
| .Add("jquery.autocomplete-min.js") |
| ).OnDocumentReady(() => |
| {%> |
| //Functions here |
| <%} |
| ) |
| .Render(); |
| %> |
Then I have a page Loaded by ajax and I would like to use the ScriptRegistered in the Master file.
I tried copying this code into the Ajax Page but it won't work. any ideas? thank you