Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-1416
in
a recent build.
-
Sencha User
App works in browser, not on iPhone + clearIcon bug
I have this very simple app. Just a view with a docked toolbar and two textfields. The bug is the textfields. I added "clearIcon: false", because they seemed to be enabled by default. But they are still visible..
Another thing which isn't working on the iPhone is selecting a textfield. I keep pressing on a textfield, but the keyboard never pops up (just some times..). So the textfield is never selected for some reason. I don't have this issue in a webbrowser like chrome. This only occurs when a passwordfield is added. When i leave the passwordfield out, then the other textfields repsond normally.
Another big issue is that when i add a textfield, it is automatically placed inside a fieldset...
I added my www directory incase anyone wants to take a look at it.
http://www.filefactory.com/file/c190cf2/n/www.zip
I'm using the latest Sencha Touch 2 version: 2.0.0 pr3
In my app i'm using the sencha-touch-all.js file.
BTW, i also had to apply this fix in order to make it work for both the browser and iPhone(PhoneGap).
PHP Code:
scope: scope
});
//if (Ext.browser.is.PhoneGap) { <-- not working
if (Ext.os.deviceType != 'Desktop' && Ext.browser.is.PhoneGap) {
if (!Ext.readyListenerAttached) {
Ext.readyListenerAttached = true;
----
So to sum up:
1. clearIcon is always visible, even when clearIcon: is explicitly set tot false.
2. Strange behaviour with multiple fields. Almost impossible to edit a field when another text/passwordfield is added
3. When adding text/password fields, they are automatically wrapped in a fieldset....
4. Needed to add the fix in order to make it work in both the webbrowser and iPhone/PhoneGap
-
Can I know more about the iPhone? iOS 3...4...5?
-
Sencha User

Originally Posted by
mitchellsimoens
Can I know more about the iPhone? iOS 3...4...5?
I'm using an iPhone 3GS iOS Version: 4.3.3 (8J2). But this also occurs in the xcode simulator (all version 4.x versions). The problem doesn't occure in the iOS 5 simulator. But this only applies to the problem i have with selecting textfields.
All the other problems remain. Like that my textfields are automatically placed in some sort of fieldset, and the fact that i can't hide the clearIcon buttons. This happends on all iOS versions 4.x up to 5.x.
If you need a fully working copy of my project (including PhoneGap) for xcode, then please let me know.
-
Sencha User
Heh, i have the exact same problem... Hopefully this will be fixed in the next release.
-
Sencha User
I wonder if this is till under your attention? I provided the needed info, but it's still on "INFOREQ" and i don't think i'm able to change it to another state.
-
Looks like we have what we need now, thanks.