jquery-viewloader

jQuery View Loader allows you to break up a page into multiple views using your template engine of choice, each loaded and rendered dynamically. When combined with KnockoutJS you can have each view be data-bound to a view model.


Keywords
view, loader, view loader, templates
Install
bower install jquery-viewloader

Documentation

jQuery ViewLoader

ViewLoader allows you to break up a page into multiple views using your template engine of choice (e.g. jQuery Template or jsView), each loaded and rendered dynamically. When combined with KnockoutJS you can have each view be data-bound to a view model.

Syntax

$(document).viewloader({
    logLevel: "debug",

   afterEachTemplate: function (templateId) { 
      // code to execute after each view has been successfully loaded
   },

   success: function (successfulResolution) {
      // Code to execute once all views have been loaded for the page
   },

   error: function (failedResolution) {
      // Code to execute if an error occurs while loading the views 

});

Demo

See the demo folder for a complete example. The demo consists of:

  1. An index.html containing 2 views, each view has a subview
  2. Four separate view files (with the .view.html extension)
  3. An application.js with an InitializeApplication function initializing the ViewLoader

(c) 2011 Philippe Monnet (@techarch) http://blog.monnet-usa.com/