- This topic has 16 replies, 5 voices, and was last updated 11 years, 4 months ago by
support-octavio.
-
AuthorPosts
-
TurgutGuneysuMemberI have a simple screen with an Image on top and underneath it a Panel containing two Textarea widgets displaying two sets of text. The panel with the two text areas is scrolling.
When I test the page on my Android phone and I touch the screen it will display the keyboard as if I am making an entry.
When I test it in the TestCenter emulator it is a bit different as I am not sure if normally a keyboard is displayed there. However, the text does highlight if I click on it, and/or click and drag on it. So in a way it is accepting input there as well.
I thought that when READONLY is selected, any keyboard entry would be prevented.
Thanks, TG
March 25, 2013 at 7:17 pm #337029
support-octavioMemberHi tguneysu,
What mobione of version are you using? I’ve done a simple app with 2.3.1 and the keyboard doesn’t show up.
You can download latest version of Mobione (2.3.1) here: http://www.genuitec.com/mobile/download.htmlIf problem continue, please share device details such model and OS, also a sample file would be helpful to investigate.
March 25, 2013 at 10:10 pm #337032
TurgutGuneysuMemberThanks for the reply Octavio. I am already using version 2.3.1.
I also received an email from you re a bug and a Ticket ID: XVY-838-20297.
It gave me a link to an interim release level to test with.
Is this about this same issue or related to something else ?
And how do I look up a ticket id to see what it is?Once I figure out which problem the interim release has solved, I will retest and forward any results to the support email address.
Thanks, TG
March 28, 2013 at 5:41 pm #337206
support-octavioMemberHi tguneysu,
We really appreciate the test case and file shared to investigate. On a preliminary test with android 4.0.4, read-only is behaving nicely. I have opened a bug on this and shared it with the dev team. Presently we will not be able to investigate this until Tues of next week due to a series of commitments.
July 3, 2013 at 8:19 pm #340568
benlMemberoctavio,
I’ve noticed this issue is occurring when developing an app in the latest version on MobiOne. I have ensured that ReadOnly is applied; however, the keyboard will still appear on my Galaxy S4.
July 4, 2013 at 12:58 pm #340586
support-octavioMemberHi benl,
What mobione version are you referring to? 2.3.2 or 2.5dev10? What android version has your device? Can you post an url of your app that demonstrate the issue?
Can you try next app I built with 2.3.2?
http://goo.gl/A8qZ5July 4, 2013 at 11:36 pm #340594
benlMemberI am working from 2.3.2 on a Galaxy S4 running 4.2.2. The text area does not display the keyboard via a web based access, but will display it when in the native application. Unfortunately I cannot post a version of my app, but I was able to force the error even in a fresh/blank app with a single screen and a read-only text area.
I tried to download your test app but I get a “Duplicate Headers Received” error message.
July 5, 2013 at 6:34 pm #340626
support-octavioMemberHi benl,
Thanks for the feedback. Please download and install next .apk attached. It’s the same file I shared via url.
>but I was able to force the error even in a fresh/blank app with a single screen and a read-only text area.
Can you share that sigle screen to help us replicate the issue? If you want to keep data in privacy send it to support at genuitec dot com, use title mobione data from benlAttachments:
You must be logged in to view attached files.July 8, 2013 at 3:20 pm #340664
benlMemberSorry about the late reply (the holiday weekend was pretty crazy). I downloaded and installed your sample/test project.
Text area “on click” -> Keyboard displays but text cannot be entered
Field “on click” -> Keyboard does not display and text cannot be enteredAny ideas on how to suppress the keyboard from displaying on text area “click”?
July 8, 2013 at 6:43 pm #340666
support-octavioMemberHi benl,
Just to confirm, you ran the test sample using Galaxy S4 with android 4.2.2, right?
July 8, 2013 at 7:51 pm #340667
benlMemberThat is correct (and it has all applicable updates as well).
July 9, 2013 at 6:30 pm #340701
support-octavioMemberHi benl,
Thank you for following up. We have been researching this. We believe it is an android or device level bug, e.g., http://goo.gl/YRwrW, http://androiddev.orkitra.com/?p=33239
July 9, 2013 at 6:51 pm #340702
benlMemberThanks for the resources octavio, I will continue to investigate it as well.
I did notice if I set a textarea’s disabled property the keyboard would not appear. However, I do not think this will be a long-term solution due to the font color changes in a disabled textarea.
February 17, 2014 at 8:16 am #347273
TorbenKjeldgaardMemberUpdate – I found a solution!
Seems only to be an issue in Android! (another Android browser bug!…)
//disable keyboard (Android bug)->
$(‘#m1-page-testarea’).focus(function() {
this.blur();
});
//disable keyboard (Android bug)<-Hi Support – any solution for this – I have the same problem, but only on android.
I’m using M1 2.6.1
Cordova 2.9No problem in Web Simulator – only on devices…
Regards
TKTFebruary 17, 2014 at 3:20 pm #347303
support-octavioMemberHi TKT,
We have an open bug on this as the readonly flag is not supported consistently across android versions. We don’t have a fix for this atm.
-
AuthorPosts