vote up 10 vote down star
11

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 ou that has the same problem.

Any advice on other templating engines to use?

flag

60% accept rate

8 Answers

vote up 15 vote down check

Check out Rick Strahl's recent 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|flag
vote up 3 vote down

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

link|flag
vote up 2 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up -1 vote down

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|flag

Your Answer

Get an OpenID
or

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