Mercurial > lada > lada-client
view app/view/grid/FilterResult.js @ 717:f124d24c8ade
Datevalidation. When editing a timeperiod in a Probeform it is validated wheter begindate is before enddate. This only happens when the blur-event is fired. ToDo: Listen to Events from the Übernehmen Button of the DateTimePicker, ToDo: Somehow the ErrorMessages are not Cleared correctly when the form is restored.
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Mon, 13 Apr 2015 16:22:34 +0200 |
parents | 7b6467edfdfc |
children | 704bb359c0fe |
line wrap: on
line source
/* Copyright (C) 2013 by Bundesamt fuer Strahlenschutz * Software engineering by Intevation GmbH * * This file is Free Software under the GNU GPL (v>=3) * and comes with ABSOLUTELY NO WARRANTY! Check out * the documentation coming with IMIS-Labordaten-Application for details. */ /* * Grid to list Proben */ Ext.define('Lada.view.grid.FilterResult', { extend: 'Ext.grid.Panel', alias: 'widget.filterresultgrid', store: 'ProbenList', multiSelect: true, viewConfig: { emptyText: 'Keine Proben gefunden.', deferEmptyText: false }, initComponent: function() { this.dockedItems = [{ xtype: 'toolbar', dock: 'top', items: [{ text: 'Hinzufügen', icon: 'resources/img/list-add.png', action: 'add' }, { text: 'Import', icon: 'resources/img/svn-commit.png', action: 'import' }, { text: 'Export', icon: 'resources/img/svn-update.png', action: 'export' }] }, { xtype: 'pagingtoolbar', dock: 'bottom', store: this.store, displayInfo: true }]; this.columns = []; this.callParent(arguments); }, /** * Setup columns of the Grid dynamically based on a list of given cols. * The function is called from the {@link Lada.controller.Sql#selectSql * select sql event} */ setupColumns: function(cols) { var resultColumns = []; var fields = []; resultColumns.push({ header: 'RW', dataIndex: 'readonly', sortable: false, width: 30, renderer: function(value) { if (value) { return '<img src="resources/img/lock_16x16.png"/>'; } return '<img src="resources/img/unlock_16x16.png"/>'; } }); fields.push(new Ext.data.Field({ name: 'readonly' })); for (var i = cols.length - 1; i >= 0; i--) { if (cols[i] === 'id') { continue; } resultColumns.push(cols[i]); fields.push(new Ext.data.Field({ name: cols[i].dataIndex })); } this.store.model.setFields(fields); this.reconfigure(this.store, resultColumns); } });