Changeset 1279
- Timestamp:
- 11/03/08 13:58:14 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/camptocamp/MapFishUnhcr/client/mfbase/mapfish/widgets/editing/FeatureProperties.js
r1278 r1279 30 30 31 31 mapfish.widgets.editing.BaseProperty.prototype = { 32 /** 33 * Property: label 34 * {String} - The label. 35 */ 36 label: null, 37 32 38 /** 33 39 * Property: name … … 99 105 return { 100 106 xtype: 'textfield', 101 fieldLabel: this. name,107 fieldLabel: this.label || this.name, 102 108 name: this.name 103 109 }; … … 128 134 129 135 /** 130 * Class: vFloatProperty136 * Class: FloatProperty 131 137 * Extension of <mapfish.widgets.editing.BaseProperty> for float properties. 132 138 */ … … 189 195 190 196 var comboConfig = OpenLayers.Util.applyDefaults({ 191 fieldLabel: this. name,197 fieldLabel: this.label || this.name, 192 198 typeAhead: true, 193 199 triggerAction: 'all',