]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/navigationview/app/view/Contacts.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / navigationview / app / view / Contacts.js
1 Ext.define('AddressBook.view.Contacts', {
2 extend: 'Ext.List',
3 xtype: 'contacts',
4
5 config: {
6 title: 'Address Book',
7 cls: 'x-contacts',
8 variableHeights: true,
9
10 store: 'Contacts',
11 itemTpl: [
12 '<div class="headshot" style="background-image:url(resources/images/headshots/{headshot});"></div>',
13 '{firstName} {lastName}',
14 '<span>{title}</span>'
15 ].join('')
16 }
17 });