Actions
Bug #48115
closedLoosing value in input element when having requestUpdate
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Backend User Interface
Target version:
-
Start date:
2013-05-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.1
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Having an input value set to for instance 100 saving the CE and interacting with another element having 'requestUpdate' the input value of 100 is not visible in TCEForm after update. The value is still in the database....
Firbug gives me: "TypeError: this.element is null"
var Autocompleter = { };
Autocompleter.Base = Class.create({
baseInitialize: function(element, update, options) {
element = $(element);
this.element = element;
this.update = $(update);
this.hasFocus = false;
this.changed = false;
this.active = false;
this.index = 0;
this.entryCount = 0;
this.oldElementValue = this.element.value;
....
Actions