Parag Dharap
Parag Dharap

Reputation: 43

what are the options for client templates for asp.net application

Now that jquery templates are discontinuing and jsrender and jsview are still in beta, what are the good options for rendering data retrieved by jquery ajax?

Upvotes: 0

Views: 128

Answers (2)

Adam Rackis
Adam Rackis

Reputation: 83366

KnockoutJS is incredible.

It supports a template system based on the older jQuery template syntax.

It also supports the MVVM pattern by allowing you to create a JavaScript ViewModel using the Knockout observables, and dependentObservable functions which can be two-way bound to dom elements.

Upvotes: 1

Daff
Daff

Reputation: 44215

My favorites are $.EJS (because it compiles into crazy fast production JavaScript) and Mustache (because language agnostic templates are awesome).

Upvotes: 0

Related Questions