Skip to content

Template engine for knockoutjs using Mustache as template library.

Notifications You must be signed in to change notification settings

WordpressDev/ko.mustache.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#ko.mustache.js

ko.mustache.js is a template engine for knockoutjs. It enables you to use mustache.js template library in place of jQuery.tmpl.

Tested with Knockout v2.1 and mustache.js v0.5.1-dev.

##Usage

Set default template engine to be used by Knockout. Make sure you do that before of your custom Knockout related code (like creating observables, applying bindings etc.).

// Set ko.mustache.js as a template engine for knockout
ko.setTemplateEngine(new ko.mustacheTemplateEngine());

##Example

<html>
<head>
	<title>ko.mustache.js example</title>
	<script type="text/javascript" src="lib/mustache.js"></script>
	<script type="text/javascript" src="lib/knockout-2.1.0.js"></script>
	<script type="text/javascript" src="ko.mustache.js"></script>
	<script>
		ko.setTemplateEngine(new ko.mustacheTemplateEngine());
	</script>
</head>
<body>
	<!-- place for rendered template -->
	<div data-bind='template: "personTemplate"'></div>

	<!-- mustache template -->
	<script id='personTemplate' type='text/html'>
		{{ name }} is {{ age }}
		<button data-bind='click: makeOlder'>Make Older</button>
	</script>

	<!-- knockout model and bindings -->
	<script type='text/javascript'>
		var viewModel = {
			name: 'Martin',
			age: ko.observable(78),
			makeOlder: function () {
				this.age(this.age() + 1);
			}
		};
		ko.applyBindings(viewModel);
	</script>
</body>
</html>

##Copyright

Copyright (c) 2011 Marcin Wtorkowski. License: MIT (http://www.opensource.org/licenses/mit-license.php)

About

Template engine for knockoutjs using Mustache as template library.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published