Skip to content
Code-Schnipsel Gruppen Projekte
Commit 2ad21c3f erstellt von Henning Leutz's avatar Henning Leutz :martial_arts_uniform:
Dateien durchsuchen
Übergeordneter 06711868
No related branches found
No related tags found
Keine zugehörigen Merge Requests gefunden
...@@ -5,11 +5,6 @@ ...@@ -5,11 +5,6 @@
* *
* @module qui/controls/elements/FormList * @module qui/controls/elements/FormList
* @author www.pcsg.de (Henning Leutz) * @author www.pcsg.de (Henning Leutz)
*
* @require qui/QUI
* @require qui/controls/Control
* @require qui/controls/buttons/Button
* @require css!qui/controls/elements/FormList.css
*/ */
define('qui/controls/elements/FormList', [ define('qui/controls/elements/FormList', [
...@@ -34,7 +29,7 @@ define('qui/controls/elements/FormList', [ ...@@ -34,7 +29,7 @@ define('qui/controls/elements/FormList', [
], ],
options: { options: {
entry: '', entry : '',
buttonText: 'Add entry' buttonText: 'Add entry'
}, },
...@@ -59,7 +54,7 @@ define('qui/controls/elements/FormList', [ ...@@ -59,7 +54,7 @@ define('qui/controls/elements/FormList', [
this.$Elm = new Element('div', { this.$Elm = new Element('div', {
'class': 'qui-controls-formlist', 'class': 'qui-controls-formlist',
html : '<div class="qui-controls-formlist-buttons"></div>' + html : '<div class="qui-controls-formlist-buttons"></div>' +
'<div class="qui-controls-formlist-container"></div>' '<div class="qui-controls-formlist-container"></div>'
}); });
this.$Container = this.$Elm.getElement('.qui-controls-formlist-container'); this.$Container = this.$Elm.getElement('.qui-controls-formlist-container');
...@@ -85,9 +80,9 @@ define('qui/controls/elements/FormList', [ ...@@ -85,9 +80,9 @@ define('qui/controls/elements/FormList', [
var nodeName = this.$Input.nodeName; var nodeName = this.$Input.nodeName;
if (nodeName == 'INPUT' || if (nodeName === 'INPUT' ||
nodeName == 'TEXTAREA' || nodeName === 'TEXTAREA' ||
nodeName == 'SELECT') { nodeName === 'SELECT') {
this.$Input.type = 'hidden'; this.$Input.type = 'hidden';
} }
...@@ -111,8 +106,7 @@ define('qui/controls/elements/FormList', [ ...@@ -111,8 +106,7 @@ define('qui/controls/elements/FormList', [
for (key in value[i]) { for (key in value[i]) {
if (value[i].hasOwnProperty(key)) { if (value[i].hasOwnProperty(key)) {
Node.getElements('[name="' + key + '"]') Node.getElements('[name="' + key + '"]').set('value', value[i][key]);
.set('value', value[i][key]);
} }
} }
} }
...@@ -163,13 +157,13 @@ define('qui/controls/elements/FormList', [ ...@@ -163,13 +157,13 @@ define('qui/controls/elements/FormList', [
var Child = new Element('div', { var Child = new Element('div', {
'class': 'qui-controls-formlist-entry', 'class': 'qui-controls-formlist-entry',
html : '<div class="qui-controls-formlist-entry-delete"></div>' + html : '<div class="qui-controls-formlist-entry-delete"></div>' +
'<div class="qui-controls-formlist-entry-data">' + '<div class="qui-controls-formlist-entry-data">' +
this.getAttribute('entry') + this.getAttribute('entry') +
'</div>' '</div>'
}).inject(this.$Container); }).inject(this.$Container);
new QUIButton({ new QUIButton({
icon : 'icon-trash', icon : 'icon-trash fa fa-trash',
events: { events: {
onClick: function () { onClick: function () {
Child.destroy(); Child.destroy();
...@@ -185,7 +179,7 @@ define('qui/controls/elements/FormList', [ ...@@ -185,7 +179,7 @@ define('qui/controls/elements/FormList', [
change: this.$refreshData change: this.$refreshData
}); });
QUI.parse(Child).then(function() { QUI.parse(Child).then(function () {
this.$refreshData(); this.$refreshData();
this.fireEvent('parsed', [this, Child]); this.fireEvent('parsed', [this, Child]);
}.bind(this)); }.bind(this));
......
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren