Titanium JIRA Archive
Appcelerator Community (AC)

[AC-3544] textbox inside a table view not working on android 5.1.1

GitHub Issuen/a
TypeBug
Priorityn/a
StatusClosed
ResolutionInvalid
Resolution Date2016-04-25T21:44:22.000+0000
Affected Version/sAppcelerator Studio 4.4.0, Appcelerator Studio 4.4.1, Appcelerator Studio 4.4.2, Appcelerator Studio 4.5.0
Fix Version/sn/a
ComponentsAlloy
Labelsn/a
ReporterRui
AssigneeShak Hossain
Created2016-04-22T21:05:11.000+0000
Updated2016-04-26T14:51:06.000+0000

Description

our app works fine in android 4.4 but does not on android 5.1.1. The textbox inside a tableview is blocked and not allowing data entry via any text keyboard, but allows data entry via any numeric keyboard. This is a project with only our login alloy form, no code behind, and it still doesn't work

Attachments

FileDateSize
txtboxbug.zip2016-04-22T21:04:14.000+000010170008

Comments

  1. Sharif AbuDarda 2016-04-23

    Hello, I have tested the issue you reported. I see you are using "keyboardType="Titanium.UI.KEYBOARD_ASCII"". Titanium.UI.KEYBOARD_ASCII is deprecated. http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI-property-KEYBOARD_ASCII. Use Titanium.UI.KEYBOARD_DEFAULT instead. Also, you are calling editable="true" twice in the textfield. Regards, Sharif.
  2. Motiur Rahman 2016-04-23

    Hello Rui, There are two "editable" property on your first textfield, so remove one and make it editable="false". Then let us know how it goes.
       <TextField id="username" borderStyle="Ti.UI.INPUT_BORDERSTYLE_ROUNDED" keyboardType="Titanium.UI.KEYBOARD_TYPE_ASCII" editable="false" class="TextBox2"></TextField>
       
    Thanks.
  3. Rui 2016-04-25

    its working now. ty for your help
  4. Sharif AbuDarda 2016-04-26

    Thanks for letting us know.

JSON Source