- This topic has 16 replies, 5 voices, and was last updated 10 years, 8 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
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.
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
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.
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.
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/A8qZ5
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.
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.
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”?
support-octavioMemberHi benl,
Just to confirm, you ran the test sample using Galaxy S4 with android 4.2.2, right?
benlMemberThat is correct (and it has all applicable updates as well).
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
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.
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
TKT
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