Scripting School Provides Ant Online Training , AngularJS Online Training, Backbone js Online Training , Node.Js Online Training , JavaScript Online Training, LUA Online Training, Groovy Scripts Online Training , Groovy on Grails Online Training , HTML5 Online Training , Maven Online Training , Perl Script Online Training , PowerShell Online Training , Python Online Training , PHP Online Training , Ruby Script Online Training , Ruby on Rails Online Training , R Scripts Online Training , TCL Script Online Training , Unix Shell Script Online Training , VBScript Online Training ,Hadoop Online Training, Advanced Java Online Training, Core Java Online Training, Hibernate Online Training, J2EE Online Training, Spring Online Training, .NET Online Training, Microsoft BI Online Training, Microsoft SSAS Online Training, Microsoft SSIS Online Training, Microsoft SSRS Online Training, SharePoint BI Online Training, SharePoint Online Training, Windows Server 2008 Admin Online Training, Cognos Online Training, Datastage Online Training, Informatica Online Training, OBIA Online Training, OBIEE Online Training, Teradata Online Training, Advanced Perl Online Training, Android Online Training, Drupal Online Training, Joomla Online Training, PHP Online Training, Python Online Training, Salesforce Online Training, SAS Clinical Online Training, SEO Online Training, Veritas Volume Manager Online Training, Web Designing Online Training.
Introduction
--------------------

What is backbone Js
Why backbone Js
Setting up the environment
A simple example


Concepts: Model-View-Controller

  • What is Model-View-Controller?
  • How does Backbone.js fit into this model?
  • What about the back-end?
Basic Backbone
  • A very simple model
  • Retrieving our simple model
  • Saving our simple model
Event handling
  • Capturing events
  • Abandoning events
  • Triggering events
The model in depth
  • Building a Model with extend()
  • Getters and setters
  • Constructors and defaults
  • Managing changes
  • Validation
Collections: Multiple models
  • Overview of the collections API
  • Creating your own Collection
  • Adding and removing elements
  • Comparing and sorting elements
  • Filtering collections
  • Data manipulation as a batch operation
Manipulating collections with Underscore.js
  • Iteration functions (forEach, map, filter)
  • Accessors: last, first
  • Searching: contains/include, etc
  • Aggregation functions: max, min, etc.
Display information with Views
  • Display a Model
  • Display a Collection
  • Display Aggregated (Reduced) Data
Backbone.sync: How to talk to a server
  • The RESTful model of CRUD interaction
  • Standard syncing over REST
  • Alternatives for non-RESTful applications
Update server-side data with forms
  • Display forms
  • Perform client-side form validation
  • Submit a form to update an object
Change views with a router
  • Start on a main route
  • Create links to display different views
  • Animate changes
  • Tracking History
Advanced topics and techniques
  • Create an automatically updating view
  • Extracting common code to libraries
Improve Performance
  • Preparations
  • Update data with a changes feed
  • Make requests over a websocket
  • Organize with Pagination