What is preventing this from functioning properly in VB.NET?
@Section Scripts
<script src='@Url.Content("~/Scripts/kendo-grid-utilities/kendo-grid-filter-menu-sorter.js")' type="text/javascript"></script>
End Section
When including scripts directly on the page, they only seem to work if the @Section Scripts is placed INSIDE the tag:
<script>
@Section Scripts
function blah(parameter){
...
I had to move the script tags inside @Section Content after the on-page styles...
UPDATE: This issue arises on a page utilized within a Kendo Window.
There are loading problems with scripts (specifically in IE!!) and I am trying to eliminate this as a potential cause.