Product placement
Here's the code for the list of products:
// app/view/product/List.js Ext.define('Alcohology.view.product.List', { extend: 'Ext.Panel', controller: 'product', xtype: 'product-list', cls: 'product-list', viewModel: 'product', tbar: [ { xtype: 'combo', store: Ext.create('Ext.data.Store', { fields: ['text', 'field', 'direction'], data : [ { text: 'Date Added', property: 'id', direction: 'DESC' }, { text: 'Name A-Z', property: 'name', direction: 'ASC' }, { text: 'Name Z-A', property: 'name', direction: 'DESC' }, { text: 'Price ASC', property: 'price', direction: 'ASC' } ...