Mercurial > lada > lada-client
comparison app/view/widget/base/TextField.js @ 659:40834912929e
Textfields sind nun max. 1000 Zeichen Lang. Die begrenzung wird erzwungen, kann jedoch überschrieben werden
author | Dustin Demuth <dustin@intevation.de> |
---|---|
date | Thu, 19 Mar 2015 10:55:01 +0100 |
parents | 291ac2e2bcf5 |
children | 777bf66dbb11 |
comparison
equal
deleted
inserted
replaced
658:bf15bfea2fca | 659:40834912929e |
---|---|
19 this.items = [{ | 19 this.items = [{ |
20 xtype: 'textfield', | 20 xtype: 'textfield', |
21 flex: 1, | 21 flex: 1, |
22 name: this.name, | 22 name: this.name, |
23 msgTarget: 'none', | 23 msgTarget: 'none', |
24 maxLength: this.maxLength, | 24 maxLength: this.maxLength || 1000, |
25 enforceMaxLength: this.enforceMaxLength || true, | |
25 fieldLabel: this.fieldLabel, | 26 fieldLabel: this.fieldLabel, |
26 labelWidth: this.labelWidth, | 27 labelWidth: this.labelWidth, |
27 listeners: this.listeners | 28 listeners: this.listeners |
28 }, { | 29 }, { |
29 xtype: 'image', | 30 xtype: 'image', |