Thank you for reporting this bug. We will make it our priority to review this report.
-
Sencha User
[DUPE-653] Touch 1.0.1 scrolls to end of page on simple touch.
Hi guys,
I cannot seem to fix this problem.
I run a simple 'hello world' page in sencha touch 1.0.1, run it in iPad - and if i simply touch the middle of the page, it immediately throws me at the bottom of the page, where there is all this gray space.
Here's the code:
Code:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Hello World</title>
<link href="http://wvit008.vifp.monash.edu.au:8080/SpecEntry/commons/lib/touch/resources/css/sencha-touch.css" rel="stylesheet" type="text/css"/>
<script src="http://wvit008.vifp.monash.edu.au:8080/SpecEntry/commons/lib/touch/sencha-touch.js" type="text/javascript"></script>
<script type="text/javascript">
new Ext.Application({
launch: function() {
new Ext.Panel({
fullscreen: true,
html: 'Hello World!'
});
}
});
</script>
</head>
<body></body>
</html>
Right now, I cannot do anything.
This is unusable and if there is no proper workaround, I'll be forced to use jQuery mobile - but I want to use sencha touch - please help, cause I feel this is a bug.
-
This is duplicated with:
http://www.sencha.com/forum/showthre...egApplication()
Please wait and download 1.0.1a which has the fix, or temporarily wrap your application code with:
Code:
Ext.setup({
onReady: function(){
// Your code here
}
});
instead
Sencha Touch Lead Architect
-
Sencha User
I did notice that when I would do an event.stopEvent() on a 'keyup' listener in a textfield, I would get this problem. I took it out - and the problem went away. Would be good to fix it though.