up vote 130 down vote favorite
77
share [g+] share [fb]

I am looking for a template engine to use client side. I have been trying a few like jsRepeater and jQuery Templates. While they seem to work OK in FireFox they all seem to break down in IE7 when it comes down to rendering HTML tables.

I also took a look at MicrosoftAjaxTemplates.js (from http://www.codeplex.com/aspnet/Release/ProjectReleases.aspx?ReleaseId=16766) but turns out that has the same problem.

Any advice on other templating engines to use?

link|improve this question

67% accept rate
1  
I wanted to upvode this question twice :) – Mark Schultheiss Sep 22 '10 at 14:13
feedback

protected by Community Sep 29 '11 at 11:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

16 Answers

up vote 71 down vote accepted

Check out Rick Strahl's post Client Templating with jQuery. He explores jTemplates, but then makes a better case for John Resig's micro-templating solution, even improving it some. Good comparisons, lots of samples.

link|improve this answer
4  
+1 for "Client Templating with jQuery" – Amr ElGarhy Feb 24 '10 at 12:37
2  
github.com/jquery/jquery-tmpl is the actual repo of Resig's templating plugin. – Thr4wn Jul 17 '10 at 17:50
@Thr4wn, the source at the repro is significantly then the library discussed in the linked articles. Both by Resig though, sure. – Frank Schwieterman Jul 25 '10 at 18:38
@Frank "the source at the repro is significantly then the library discussed in the linked articles" Um huh? Say what? Not sure what you mean by this at all. – Mark Schultheiss Jul 29 '10 at 12:33
1  
@Mark: he meant "significantly different than." – Domenic Sep 20 '10 at 6:35
show 1 more comment
feedback

Just did some research on this and I'll be using jquery-tmpl. Why?

  1. It's written by John Resig.
  2. It'll be maintained by the core jQuery team as an "official" plugin.
  3. It strikes a perfect balance between simplicity and functionality.
  4. It has a very clean and well thought out syntax.
  5. It HTML-encodes by default.
  6. It's highly extensible.

More here: http://forum.jquery.com/topic/templating-syntax

link|improve this answer
+1. But I used Rick Strahl's. Bcoz it's a small one and serves my purpose well. – iSid Jul 17 '10 at 11:31
it was just announced that this is now official plugin – serg Oct 7 '10 at 21:35
I use it everywhere! – Prisoner ZERO Dec 14 '10 at 16:05
7  
Unfortunately, it was depreciated. any forker? – OnesimusUnbound Oct 10 '11 at 8:53
feedback

jQote: http://aefxx.com/jquery-plugins/jqote/

Someone took Resig's micro-templating solution and packaged it into a jQuery plugin.

I'll be using this until Resig releases his own (if he releases his own).

Thanks for the tip, ewbi.

link|improve this answer
I actually just implemented this into production and it's working rather nicely – lomaxx May 1 '10 at 11:37
5  
This has now become jQote2: aefxx.com/jquery-plugins/jqote2 – Alex Angas Jun 20 '10 at 23:57
feedback

jQuery-tmpl will be in the jQuery core beginning in jQuery 1.5:

http://blog.jquery.com/2010/10/04/new-official-jquery-plugins-provide-templating-data-linking-and-globalization/

The official documentation is here:

http://api.jquery.com/category/plugins/templates/


EDIT: It's been left out of jQuery 1.5 and will now be coordinated by the jQuery UI team, as it will be a dependency of the upcoming jQuery UI Grid.

http://blog.jquery.it/2011/04/16/official-plugins-a-change-in-the-roadmap/

link|improve this answer
jQuery-tmpl is the BEST! – Prisoner ZERO Dec 14 '10 at 16:04
feedback

Not sure how it handles your specific problem, but there's also the PURE template engine.

link|improve this answer
besides its limitations, PURE is very easy to use – Jader Dias Aug 12 '10 at 16:10
@Jader, what limitations are the most painful? – Mic Sep 23 '10 at 10:21
@Mic PURE is limited by design. In server-side template engines you don't have to stick to valid HTML, but PURE is based on HTML. But I think there are quirks that would a allow another javascript template engine to be as powerful as the server side ones. – Jader Dias Sep 23 '10 at 11:46
@Jader, ok for HTML only. But I didn't get what do you mean by quirks and another engine. – Mic Sep 23 '10 at 12:08
@Mic PURE should have to be rewritten from scratch to allow some features to be included. To allow invalid HTML templates you should use script tags with attribute type different from text/javascript. This is one "quirk" that would allow invalid HTML. – Jader Dias Sep 23 '10 at 13:00
show 1 more comment
feedback

jQuery Nano: http://github.com/trix/nano

link|improve this answer
feedback

This isn't jsquery specific, but here's a JS-based templating library released by google as open source:

http://code.google.com/p/google-jstemplate/

This allows using DOM elements as templates, and is re-entrant (in that the output of a template rendering is still a template that can be re-rendered with a different data model).

link|improve this answer
feedback

Others have pointed jquery-tmpl, and I have upvoted those answer. But be sure to have a look at github forks.

There are important fixes out there and interesting features too. http://github.com/jquery/jquery-tmpl/network

link|improve this answer
1  
Any particular fork to look at for fixes? – Kevin Hakanson Aug 6 '10 at 15:43
TBH, it's a bit messy... I went for github.com/appendto/jquery-tmpl after a quick scan on the changes and considering the fact that appendto is a company. YMMV – Yann Aug 10 '10 at 22:11
jquery-tmpl has been folded in the official 1.4.3 distribution. – Yann Oct 14 '10 at 5:30
feedback

John Resig has one that's he's posted on his blog. http://ejohn.org/blog/javascript-micro-templating/

link|improve this answer
feedback

If you're working in the .NET Framework 2.0/3.5, you should take a look at JBST as implemented by http://JsonFx.net. It has a client-side templating solution that has familiar JSP/ASP syntax but is precompiled at build-time for compact cache-able templates that don't need to be parsed at runtime. It works well with jQuery and other JavaScript libraries as the templates themselves are compiled to pure JavaScript.

link|improve this answer
feedback

I was using jtemplates jquery pluging but the performance was really bad. I switched to trimpath (http://code.google.com/p/trimpath/wiki/JavaScriptTemplates) which has much better performance. I haven't noticed any issues with IE7 or FF.

link|improve this answer
feedback

You may want to think a bit how you want to design your templates.

One issue with many of the listed template solutions (jQote, jquery-tmpl, jTemplates) is they require you to insert non-HTML in your HTML, which can be a pain to work with in HTML tools or in a development process with HTML designers. I personally don't like the feel of that approach, though it has its pros and cons.

There is another class of template approaches that use normal HTML, but allow you to indicate data bindings with element attributes, CSS classes, or external mappings.

Knockout is a good example of this approach, but I have not used it myself so I am leaving it to the votes to decide if others like it or not. At least until I have time to play with it more.

PURE listed as another answer is another example of this approach.

For reference you can also look at chain.js, but it doesn't seem to have been updated much since its original release. For more background on it see http://javascriptly.com/2008/08/a-better-javascript-template-engine/.

link|improve this answer
feedback

For very light work jquery-tmpl is adequate, but it requires in some cases that the data know how to format itself (bad thing!).

If you're looking for a more full featured templating plugin I'd suggest Orange-J. It was inspired by Freemarker. It supports if, else, loops over objects & arrays, inline javascript, including templates within templates and has excellent formatting options for output (maxlen, wordboundary, htmlentities, etc).

Oh, and easy syntax.

link|improve this answer
feedback

Only to be the foolish ^^

// LighTest TPL
$.tpl = function(tpl, val) {
    for (var p in val)
        tpl = tpl.replace(new RegExp('({'+p+'})', 'g'), val[p] || '');
    return tpl;
};
// Routine...
var dataObj = [{id:1, title:'toto'}, {id:2, title:'tutu'}],
    tplHtml = '<div>N°{id} - {title}</div>',
    newHtml    = '';
$.each(dataObj, function(i, val) {
     newHtml += $.tpl(tplHtml, val);
});
var $newHtml = $(newHtml).appendTo('body');

http://jsfiddle.net/molokoloco/w8xSx/ ;)

link|improve this answer
feedback

There is also an rewrite of PURE by beebole - jquery pure html templates - https://github.com/mpapis/jquery-pure-templates

It should allow a lot more automatic rendering mostly using jquery selectors, whats more important it does not require to put fancy things into HTML.

link|improve this answer
feedback

I'm totally satisfied with the XSLT/XML. It's main disadvantage it the learning curve: it took me about two weeks to understand the basics and a month to switch the developing to it

link|improve this answer
1  
Not really a fix for this. – knowncitizen Mar 9 '10 at 17:47
xml/xslt can also be used client side on some browsers to create templates – jujule Apr 16 '10 at 9:16
1  
Only some browsers support it. And it doesn't really have a good mechanism for defaulting on browsers that don't support it. And JSON is a lot neater to ferry around than XML. And it's weird to get your head round. And there are some things that are really quite difficult to achieve in it, that would be easy in anything else. All counted, not a recommended solution to anything. – Marcus Downing Aug 10 '10 at 14:17
Just a thought, you can process/use Javascript in XSLT (at least in some, I am not knowlegable in all browsers on this point). – Mark Schultheiss Sep 22 '10 at 14:11
2  
Why not use a chisel and hammer then? – Mrchief Sep 8 '11 at 2:16
feedback

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