-
9 Apr 2012 10:22 PM #1
Unanswered: Form Field Focus Issues
Unanswered: Form Field Focus Issues
Hi,
I have been working with many sencha apps and found few common issues with form fields behaviors.
Right now I am working with sencha commercial and still facing the same issues.
(1) On click of clear icon I am not able to see Placeholder again and also focus is lost from that field so no cursor is available there to start typing again.
(2) On focus of any field placeholder disappears that should not be done, placeholder should be there till user starts typing.
(3) I can see 2 cursors on the fields of the same form at a time, so its hard to identify which field is having correct focus.
(4) If I set tabindex for the fields then also I am not able to see first/next buttons on keyboard to navigate through all the form fields.
Note : All the above mentioned issues works well on browser but not supported in Android devices. I had also try to run sencha forms example in device but behaves same with mentioned issues.
Thanks in Advance.
-
10 Apr 2012 6:29 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3101
- This happens on iOS also. Something that we could probably work out, only hiccup is that mobile browsers don't always like you forcing them to focus or blur on fields.
- This sounds like a browser issue. iOS/Chrome/Safari do not show this behavior.
- This definitely sounds like a browser issue.
- Once again, sounds like a browser issue. This works on iOS/Chrome/Safari.
Here is the code I tested this with:
Code:new Ext.Container({ fullscreen : true, html : '<input placeholder="Regular input" tabindex=3 />', items : [ { xtype : 'textfield', placeHolder : 'Test', tabIndex : 2 }, { xtype : 'textfield', placeHolder : 'Test 2', tabIndex : 1 } ] });Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
11 Apr 2012 3:54 AM #3
Hi,
Thanks for the reply.
I am using phonegap 1.5 with sencha, so is it creating some problems with such form fields?
This is something very serious issues and that is turning out to be bad impression on clients also by serving application developed applications in Sencha.
Is there any quick solutions for this issues?


Reply With Quote