Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to keep all my of javascript logic in one section; just before the </body> tag in my master layout page and just wondering the best to go about it.

For example, if I create a DisplayTemplate\DateTime.cshtml which uses jQuery UI's DateTime Picker than I would embed the javascript directly into that template but obviously it will render mid-page.

In my normal views I can just use @section JavaScript { //js here } and then @RenderSection("JavaScript", false) in my master layout but this doesn't seem to work in display/editor templates - any ideas?

share|improve this question

5 Answers

up vote 63 down vote accepted

You could proceed with a conjunction of two helpers:

public static class HtmlExtensions
{
    public static MvcHtmlString Script(this HtmlHelper htmlHelper, Func<object, HelperResult> template)
    {
        htmlHelper.ViewContext.HttpContext.Items["_script_" + Guid.NewGuid()] = template;
        return MvcHtmlString.Empty;
    }

    public static IHtmlString RenderScripts(this HtmlHelper htmlHelper)
    {
        foreach (object key in htmlHelper.ViewContext.HttpContext.Items.Keys)
        {
            if (key.ToString().StartsWith("_script_"))
            {
                var template = htmlHelper.ViewContext.HttpContext.Items[key] as Func<object, HelperResult>;
                if (template != null)
                {
                    htmlHelper.ViewContext.Writer.Write(template(null));
                }
            }
        }
        return MvcHtmlString.Empty;
    }
}

and then in your _Layout.cshtml:

<body>
...
@Html.RenderScripts()
</body>

and somewhere in some template:

@Html.Script(
    @<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
)
share|improve this answer
Exactly what I was after, thanks Darin :-) – eth0 Mar 25 '11 at 15:31
1  
As a dictionary is un-ordered how would I do first in first out? The order it outputs is random (presumably because of the Guid).. – eth0 Mar 25 '11 at 15:56
Perhaps you could set up a static integer field and use Interlocked.Increment() in place of the GUID to get ordering, but even then I think a dictionary never guarantees ordering. On second thoughts, maybe a static field is dodgy as it might get kept across page displays. Instead could add an integer to the Items dictionary, but you'd have to put a lock around it. – Mark Adamson May 30 '11 at 20:49
I started using this solution recently, but I can't seem to stuff two scripts in a single @Html.Script() line, because I'm not sure how HelperResult works. Is it not possible to do 2 script blocks in 1 Html.Script call? – Langdon Jun 3 '11 at 21:01
I solved it for now by changing the Func parameter in the Script helper method to params. You have to add funky commas between your scripts, but it's better than calling Script multiple times. – Langdon Jun 6 '11 at 14:48
show 7 more comments

Modified version of Darin's answer to ensure ordering. Also works with CSS:

    public static IHtmlString Resource(this HtmlHelper HtmlHelper, Func<object, HelperResult> Template, string Type)
    {
        if (HtmlHelper.ViewContext.HttpContext.Items[Type] != null) ((List<Func<object, HelperResult>>)HtmlHelper.ViewContext.HttpContext.Items[Type]).Add(Template);
        else HtmlHelper.ViewContext.HttpContext.Items[Type] = new List<Func<object, HelperResult>>() { Template };

        return new HtmlString(String.Empty);
    }

    public static IHtmlString RenderResources(this HtmlHelper HtmlHelper, string Type)
    {
        if (HtmlHelper.ViewContext.HttpContext.Items[Type] != null)
        {
            List<Func<object, HelperResult>> Resources = (List<Func<object, HelperResult>>)HtmlHelper.ViewContext.HttpContext.Items[Type];

            foreach (var Resource in Resources)
            {
                if (Resource != null) HtmlHelper.ViewContext.Writer.Write(Resource(null));
            }
        }

        return new HtmlString(String.Empty);
    }

adding JS/CSS:

@Html.Resource(@<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>, "js")`
@Html.Resource(@<link rel="stylesheet" href="@Url.Content("~/CSS/style.css")" />, "css")`

@Html.RenderResources("js") and @Html.RenderResources("css") to render.

You could do a string check to see if it starts with script/link so you don't have to explicitly define what each resource is.

share|improve this answer
Thanks eth0. I compromised on this issue, but I'll have to check this out. – one.beat.consumer Dec 19 '11 at 21:00

This post really helped me so I thought I would post my implementation of the basic idea. I've introduced a helper function that can return script tags for use in the @Html.Resource function.

I also added a simple static class so that I can use typed variables to identify a JS or CSS resource.

public static class ResourceType
{
    public const string Css = "css";
    public const string Js = "js";
}

public static class HtmlExtensions
{
    public static IHtmlString Resource(this HtmlHelper htmlHelper, Func<object, dynamic> template, string Type)
    {
        if (htmlHelper.ViewContext.HttpContext.Items[Type] != null) ((List<Func<object, dynamic>>)htmlHelper.ViewContext.HttpContext.Items[Type]).Add(template);
        else htmlHelper.ViewContext.HttpContext.Items[Type] = new List<Func<object, dynamic>>() { template };

        return new HtmlString(String.Empty);
    }

    public static IHtmlString RenderResources(this HtmlHelper htmlHelper, string Type)
    {
        if (htmlHelper.ViewContext.HttpContext.Items[Type] != null)
        {
            List<Func<object, dynamic>> resources = (List<Func<object, dynamic>>)htmlHelper.ViewContext.HttpContext.Items[Type];

            foreach (var resource in resources)
            {
                if (resource != null) htmlHelper.ViewContext.Writer.Write(resource(null));
            }
        }

        return new HtmlString(String.Empty);
    }

    public static Func<object, dynamic> ScriptTag(this HtmlHelper htmlHelper, string url)
    {
        var urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);
        var script = new TagBuilder("script");
        script.Attributes["type"] = "text/javascript";
        script.Attributes["src"] = urlHelper.Content("~/" + url);
        return x => new HtmlString(script.ToString(TagRenderMode.Normal));
    }
}

And in use

@Html.Resource(Html.ScriptTag("Areas/Admin/js/plugins/wysiwyg/jquery.wysiwyg.js"), ResourceType.Js)

Thanks to @Darin Dimitrov who supplied the answer in my question here.

share|improve this answer

The answer given in Populate a Razor Section From a Partial using the RequireScript HtmlHelper follows the same pattern. It also has the benefit that it checks for and suppresses duplicate references to the same Javascript URL, and it has an explicit priority parameter that can be used to control ordering.

I extended this solution by adding methods for:

// use this for scripts to be placed just before the </body> tag
public static string RequireFooterScript(this HtmlHelper html, string path, int priority = 1) { ... }
public static HtmlString EmitRequiredFooterScripts(this HtmlHelper html) { ... }

// use this for CSS links
public static string RequireCSS(this HtmlHelper html, string path, int priority = 1) { ... }
public static HtmlString EmitRequiredCSS(this HtmlHelper html) { ... }

I like Darin's & eth0's solutions though since they use the HelperResult template, which allows for script and CSS blocks, not just links to Javascript and CSS files.

share|improve this answer

I faced the same problem, but solutions proposed here work good only for adding reference to the resource and are not very suitable for inline JS code. I found a very helpful article and wrapped all my inline JS (and also script tags) in

@using (Html.BeginScripts())
{
    <script src="@Url.Content("~/Scripts/jquery-ui-1.8.18.min.js")" type="text/javascript"></script>
    <script>
    // my inline scripts here
    <\script>
}

And in the _Layout view placed @Html.PageScripts() just before closing 'body' tag. Works like a charm for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.