I just started using jQuery's template engine. Which looks quite nice so far. Yet i wonder if it's possible to load templates from an external file somehow. Imagine having loads of templates. This would mess up the html-code and is also not cacheable and has to be downloaded on every request.

I was hoping there is a way to define them all in an external file and then load them and store the compiled templates into localStorage.

Does anyone have an idea how to load them from an external file?

link|improve this question

feedback

2 Answers

up vote 18 down vote accepted

Dave Ward recently wrote a blogpost about this:
http://encosia.com/2010/12/02/jquery-templates-composite-rendering-and-remote-loading/

He talks about naming conventions as well as live examples of how to do.

link|improve this answer
This looks awesome! Exactly what I've been looking for. – Nils Riedemann Dec 6 '10 at 12:42
Thanks a bunch! Exactly what I was looking for. – mhenrixon Aug 12 '11 at 8:47
feedback

you can load this template with ajax.

<script>
  var movies = [
    { Name: "The Red Violin", ReleaseYear: "1998", Director: "François Girard" },
    { Name: "Eyes Wide Shut", ReleaseYear: "1999", Director: "Stanley Kubrick" },
    { Name: "The Inheritance", ReleaseYear: "1976", Director: "Mauro Bolognini" }
  ];

  $.get("templates/movieTemplate.html", function(data, textStatus, XMLHttpRequest){
    var markup = data; //"<tr><td colspan='2'>${Name}</td><td>Released: ${ReleaseYear}</td><td>Director: ${Director}</td></tr>"

    /* Compile markup string as a named template */
    $.template( "movieTemplate", markup );

    /* Render the named template */
    $.tmpl( "movieTemplate", movies ).appendTo( "#movieList" );
  });
</script>

You can add now the localstore-logik or an array for the loaded templates if you whant to lead any template only once.

link|improve this answer
+1 for including example on using .template() to compile and $.tmpl() to render. This allows repeat calls to $.tmpl() later, without a need to fetch or compile. – justis Sep 2 '11 at 17:33
feedback

Your Answer

 
or
required, but never shown

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