Ignore:
Timestamp:
06/10/13 01:07:16 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Save answers, improved response page and question widgets.

  • Warn if _ComplexValueMixin is not pout on a form element, to prevent 'name' collisions. Changed all depending widgets to <form>'s.
  • Fixed names for question widgets to actually save answers.
  • Fixed and improved response page.
  • Fixed names in MultipleChoice? widget, which behaves different for radio and check.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/client/qed-client/model/widgets/questions/TextInputWidget.js

    r443 r461  
    1414        },
    1515        _getValueAttr: function() {
    16             return this.textBox.get('value');
     16            return this.textArea.get('value');
    1717        },
    1818        _setValueAttr: function(value) {
    19             return this.textBox.set('value', value);
     19            return this.textArea.set('value', value);
    2020        }
    2121    });
Note: See TracChangeset for help on using the changeset viewer.