Grid not scrolling on mobile device
Hi,
http://foxincloud.com/tutotest/bs/dataUpdate.tuto
when swiping over the grid, page scroll instead of the grid … quite sure it used to work however it seems broken now…
we changed JS libraries around, not sure it can have had an impact.
Here is what I find in Safari debug:
1. when swipe starts, window resizes to minimize title bar so the window.resize() event triggers
https://www.dropbox.com/s/wfpixcmhyxeubcx/AW-grid-scroll-debug-1.png?dl=0
2. AW.dispatch(element:window, event:event) calls AW.object(element.id)
https://www.dropbox.com/s/cws68v0y3ax8yha/AW-grid-scroll-debug-2.png?dl=0
3. as id is undefined, AW.object(id) fails on
https://www.dropbox.com/s/25jiojcesaksnfy/AW-grid-scroll-debug-3.png?dl=0
Would this patch help?
Any clue?
Thanks,
http://foxincloud.com/tutotest/bs/dataUpdate.tuto
when swiping over the grid, page scroll instead of the grid … quite sure it used to work however it seems broken now…
we changed JS libraries around, not sure it can have had an impact.
Here is what I find in Safari debug:
1. when swipe starts, window resizes to minimize title bar so the window.resize() event triggers
https://www.dropbox.com/s/wfpixcmhyxeubcx/AW-grid-scroll-debug-1.png?dl=0
2. AW.dispatch(element:window, event:event) calls AW.object(element.id)
https://www.dropbox.com/s/cws68v0y3ax8yha/AW-grid-scroll-debug-2.png?dl=0
3. as id is undefined, AW.object(id) fails on
var parts = id.split("-")
https://www.dropbox.com/s/25jiojcesaksnfy/AW-grid-scroll-debug-3.png?dl=0
Would this patch help?
var parts = id ? id.split("-"): [];
Any clue?
Thanks,
Thierry Nivelet (FoxInCloud)
February 9,