vote up 5 vote down star
6

I am exploring ASP.NET MVC and I wanted to add jQuery to make the site interactive. I used StringTemplate, ported to .Net, as my template engine to generate html and to send JSON. However, when I view the page, I could not see it. After debugging, I've realized that the $ is used by the StringTemplate to access property, etc and jQuery uses it too to manipulate the DOM. Gee, I've looked on other template engines and most of them uses the dollar sign :(.

Any alternative template engine for ASP.Net MVC? I wanted to retain jQuery because MSFT announced that it will used in the Visual Studio (2008?)

Thanks in Advance :)

flag
I have heard great things about StringTemplate, it will be interesting to see if you can get this working by changing the ANTLR delimiters as suggested below... – Xian Dec 7 '08 at 19:31
What could be a better delimiter for '$'? Could it be '<$ ... $>'? – OnesimusUnbound Dec 23 '08 at 1:37

10 Answers

vote up 2 vote down

Perhaps jQuery.noConflict will work for you

link|flag
I think this option is not applicable for StringTemplate. Stringtemplate is not a JavaScript library. The noConflict() is used when another JavaScript library is used and that library uses the $ – OnesimusUnbound Oct 6 '08 at 14:02
1  
Why not use "jQuery" instead of "$" – ANaimi Nov 2 '08 at 4:41
1  
I always wanted the '$' :). Anyway, you have a point ANaimi :). I guess I can let go of the '$' – OnesimusUnbound Nov 4 '08 at 23:55
vote up 1 vote down

Have you tried $$ or /$ to escape the dollar signs in string template? I'm not sure about ST specifically but thats how most template engines work.

As for other templating engines, I really loved nVelocity when I used it on a project.

link|flag
ST uses \$ to denote it as $ when the engine generates the output, but it looked awkward. Well, I might look on nVelocity and see if I'll like it. :) – OnesimusUnbound Oct 6 '08 at 14:04
Follow up. nVelocity has an issue for $ (mail-archive.com/castle-project-users@googlegroup…) but then nVelocity looks cleaner. – OnesimusUnbound Oct 6 '08 at 14:52
vote up 3 vote down

Have a look at the mvccontrib project. They have 4 different view engines at the moment which are brail, nhaml, nvelocity and xslt.

http://www.codeplex.com/MVCContrib

link|flag
vote up 3 vote down

I would highly recommend Spark. I've been using it for awhile now with jQuery and haven't ran into a single issue so far.

link|flag
Spark won't collide with jQuery because $ is only recognized directly in front of an {expression}. There's no valid jQuery statement that starts with "${". – loudej Oct 12 '08 at 4:33
Spark looks very promising. I seemed to like it. – OnesimusUnbound Dec 15 '08 at 13:55
vote up 3 vote down

In case you want to stick with StringTemplate (ST) see this article from the ST wiki. You may also change the behaviour totally by editing Antlr.StringTemplate.Language\DefaultTemplateLexer.cs and replacing the "$" with what you want.

link|flag
vote up 0 vote down

You could try jsRepeater.

link|flag
vote up 5 vote down

You can of course move your js logic into a .js file. But if you want it inline with your StringTemplate views, you can escape it using the \$ construct.

In addition, you can simply use the jQuery("selector"), instead of $("selector") construct if you want to avoid the escaping syntax.

Here's a good article on using StringTemplate as a View Engine in MVC.

There's also an accompanying OpenSource engine, along with some samples.

Also, as mentioned above, you can modify your Type Lexer. (make it an alternate character to the $).

link|flag
1  
using jQuery instead of $ is a good habbit anyway, since prototype and ms ajax libraries hijack $ anyway, and you want to know explicitly what is jQuery and what is not so good. – DevelopingChris Jul 18 at 12:32
vote up 3 vote down

JQuery can be disambiguated by using the jQuery keyword like this:

jQuery(

instead of this:

$(

I would consider this a best practice. It eliminates any possibility of clashing with another library, and makes the code more readable.

link|flag
vote up 2 vote down

I really like the syntax in Django, so I recommend NDjango :)

link|flag
vote up 1 vote down

JsonFx.NET has a powerful client-side templating engine with familiar ASP.NET style syntax. The entire framework is specifically designed to work well with jQuery and ASP.NET MVC. You can get examples of how to build real world UI from: http://code.google.com/p/jsonfx-examples/

link|flag

Your Answer

Get an OpenID
or

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