Bug #35314
closedSlider wizard renders incorrectly in inactive tabs
0%
Description
The slider wizard does not detect its width correctly when it is placed in a inactive tab in the backend. This is related to: http://www.sencha.com/forum/showthread.php?104038
Possible fix would be to override the "getRatio" in "TYPO3.Components.TcaValueSlider" which calculates the position of the handle:
getRatio : function() {
var w = this.innerEl.getWidth() || parseInt(this.innerEl.dom.style.width, 10) || this.width,
v = this.maxValue - this.minValue;
return v == 0 ? w : (w/v);
}
Updated by Wouter Wolters almost 10 years ago
- Status changed from New to Needs Feedback
- Is Regression set to No
Hi,
as this issue is very old. Is this feature missing in newer versions of TYPO3 CMS (6.2.9)?
Updated by Alexander Opitz over 9 years ago
- Status changed from Needs Feedback to Closed
No feedback within the last 90 days => closing this issue.
If you think that this is the wrong decision or experience this issue again, then please write to the mailing list typo3.teams.bugs with issue number and an explanation or open a new ticket and add a relation to this ticket number.