Just another person reporting the issue.
Chrome 23.0.1271.97
Printable View
Just another person reporting the issue.
Chrome 23.0.1271.97
+1
Chrome 24.0.1312.56
+1 Chrome Version 24.0.1312.57
Hello, it's important to fix it, cause this issue makes the ui-element unuseable!
Please reopen thread and investigate.
Thanks in advance
J.
Hello,
You can find a solution like this, insert the red-line statement into getSnapPosition method of the Scroller.js
getSnapPosition: function(axis) {
var snapSize = this.getSlotSnapSize()[axis],
snapPosition = null,
position, snapOffset, maxPosition, mod;
if (snapSize !== 0 && this.isAxisEnabled(axis)) {
position = this.position[axis];
snapOffset = this.getSlotSnapOffset()[axis];
maxPosition = this.getMaxPosition()[axis];
if (position >= maxPosition) return null;
mod = (position - snapOffset) % snapSize;
Same thing here.
Not working on Chrome 24.0.1312.57 m
Working on Android / Iphone
It works.
Of course i have to made some changes on the variable names for the "sencha-touch-all.js" file :
{a=this.position[c];f=this.getSlotSnapOffset()[c];e=this.getMaxPosition()[c];/*FIXME:datepickerfield troubleshoot*/if(a>=e){return null;}/*END*/b=(a-f)%g;if(b!==0)
Thank you Emrahsu for providing a quick fix.