Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-3603] iOS: textArea never uses the bottom row

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionFixed
Resolution Date2011-06-28T09:59:27.000+0000
Affected Version/sRelease 1.6.0
Fix Version/sSprint 2011-26, Release 1.7.2
ComponentsiOS
Labels1.6.1, ios, klist, rplist, textarea
ReporterJon Alter
AssigneeBlain Hamon
Created2011-04-17T23:07:37.000+0000
Updated2011-07-06T17:06:52.000+0000

Description

Make the text field high enough to only see one line of text. when you focus on the textArea the cursor will go out the top. Anything you type will be out of view. You can still see the autocomplete bubble come up. You can never type in the bottom row of the textArea. It will act the same way if you make the text field taller, but it will not be as obvious. You can also see this behavior in KitchenSink 'Controls>Text Area>Basic' Step 1: copy the code below into app.js Step 2: run the app Step 3: focus on the textArea Step 4: notice that the cursor moves up out of view Step 5: type and you will see the autocomplete bubble
var win = Titanium.UI.createWindow({
	backgroundColor: 'blue'
});

var textField = Titanium.UI.createTextArea({
    color:'#336699',
    height: 35,
    width:300,
    top: 3
});

win.add(textField);
win.open();

Tested On

iOS 4.3, TiSDK 1.6.1 iOS 4.3, TiSDK 1.7.1

Associated Helpdesk Ticket

http://appc.me/c/RUT-47599-528

Comments

  1. Alan Vaghti 2011-07-06

    Passed as expected on iPad with iOS 4.3 and iPhone with iOS 4.3.3
  2. Alan Vaghti 2011-07-06

    ^^ Additional note: Passed using SDK 1.7.2.v20110628133840

JSON Source