Mercurial > lada > lada-client
view app/view/sql/List.js @ 25:f964a50bfe57
Restructured the application. Fixed layouts etc.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Wed, 08 May 2013 12:20:06 +0200 |
parents | 4faac2a04345 |
children |
line wrap: on
line source
Ext.define('Lada.view.sql.List' ,{ extend: 'Ext.grid.Panel', alias: 'widget.sqllist', store: 'Sql', initComponent: function() { this.columns = [ {header: 'ID', dataIndex: 'id', flex: 1}, {header: 'Kurzname', dataIndex: 'name', flex: 1}, {header: 'SQL', dataIndex: 'desc', flex: 1} ]; this.callParent(arguments); } });