[TIMOB-3603] iOS: textArea never uses the bottom row
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2011-06-28T09:59:27.000+0000 |
Affected Version/s | Release 1.6.0 |
Fix Version/s | Sprint 2011-26, Release 1.7.2 |
Components | iOS |
Labels | 1.6.1, ios, klist, rplist, textarea |
Reporter | Jon Alter |
Assignee | Blain Hamon |
Created | 2011-04-17T23:07:37.000+0000 |
Updated | 2011-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();
Passed as expected on iPad with iOS 4.3 and iPhone with iOS 4.3.3
^^ Additional note: Passed using SDK 1.7.2.v20110628133840