Skip to content

Instantly share code, notes, and snippets.

@webOS101
Last active August 29, 2015 14:06
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 webOS101/fc80269608520e7d0b0a to your computer and use it in GitHub Desktop.
Save webOS101/fc80269608520e7d0b0a to your computer and use it in GitHub Desktop.
Enyo Data Source Sample
enyo.ready(function() {
enyo.AjaxSource.create({ name: 'ajax' });
var collection = new enyo.Collection({
source: 'ajax',
url: 'https://api.github.com/users/enyojs/repos'
});
enyo.kind({
name: 'RepoView',
kind: 'DataRepeater',
collection: collection,
components: [{
components: [{ name: 'name' }],
bindings: [
{ from: 'model.name', to: '$.name.content' }
]
}]
});
new enyo.Application({ name: 'app', view: 'RepoView' });
collection.fetch();
});
name: Data Source Example
description: An example of Enyo data sources
authors:
- Roy Sutton
normalize_css: no
@webOS101
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment