Mercurial > lada > lada-client
view app/view/orte/List.js @ 134:1620d02d2973
Reset idProperty to probeId again as it seems the the submitted data will have
an autogenerated id property "id" in the other case which causes problems on
the server side.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Tue, 25 Jun 2013 17:33:56 +0200 |
parents | 7ad96e3d70c1 |
children | 26ac4c99f8c4 |
line wrap: on
line source
Ext.define('Lada.view.orte.List' ,{ extend: 'Ext.grid.Panel', alias: 'widget.ortelist', store: 'Orte', viewConfig: { maxHeight: 350, emptyText: 'Keine Orte gefunden.', // minHeight and deferEmptyText are needed to be able to show the // emptyText message. minHeight: 35, deferEmptyText: false }, initComponent: function() { this.dockedItems = [ { xtype: 'toolbar', dock: 'top', items: [ { text: 'Hinzufügen', icon: 'gfx/plus.gif', action: 'add' }, { text: 'Löschen', icon: 'gfx/minus.gif', action: 'delete' } ] } ]; this.columns = [ {header: 'Typ', dataIndex: 'otyp'}, {header: 'ID', dataIndex: 'ortId'}, {header: 'Staat', dataIndex: 'staatId'}, {header: 'Gem-ID', dataIndex: 'gemId'}, {header: 'Gemeindebezeichnung', dataIndex: 'bezeichnung', flex: 1}, {header: 'Messpunkt', dataIndex: ''} ]; this.callParent(arguments); } });