Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 16, 2014 20:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/0cc31ca45f9e60949050 to your computer and use it in GitHub Desktop.
Save devdays/0cc31ca45f9e60949050 to your computer and use it in GitHub Desktop.
Object JavaScript - HTML File that uses an external template
<!DOCTYPE html>
<html>
<head>
<title>Binding List to Template</title>
</head>
<body>
<h2>Products</h2>
<table id="target"
data-bind="template: { name: 'ProductTemplate', foreach: productArray }">
</table>
<script src="Scripts/jquery-2.0.0.js"></script>
<script src="Scripts/knockout-2.2.1.debug.js"></script>
<script src="Scripts/TrafficCop.js"></script>
<script src="Scripts/infuser.js"></script>
<script src="Scripts/koExternalTemplateEngine.js"></script>
<script type="text/javascript">
$(function () {
//infuser.defaults.templateUrl = "./templates";
function ViewModel() {
this.productArray = ko.observableArray([
{ product: "Widget", type: "Tool" },
{ product: "Bolt", type: "Fastener" },
{ product: "Washer", type: "Fastener" },
{ product: "Screwdriver", type: "Tool" }
]);
}
ko.applyBindings(new ViewModel());
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment