[TIMOB-6791] iOS: textArea should accept borderStyles being set just as textField does
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Invalid |
| Resolution Date | 2017-07-10T22:20:59.000+0000 |
| Affected Version/s | Release 1.8.0.1, Release 3.1.0 |
| Fix Version/s | n/a |
| Components | iOS |
| Labels | api, parity |
| Reporter | Jon Alter |
| Assignee | Ingo Muschenetz |
| Created | 2011-12-20T13:19:48.000+0000 |
| Updated | 2017-07-10T22:20:59.000+0000 |
Description
TextArea does not accept borderStyle as TextField does.
Both TextArea and TextField should react the same way to borderStyle being set.
Steps
Step 1: run the code below Step 2: notice that there is no border on the textArea Step 3: change createTextArea to createTextField Step 4: run the code again Step 5: notice that the textField does have a border They should both have the same border.
var win = Ti.UI.createWindow({backgroundColor:'black'});
var text = UI.Ti.UI.createTextArea({
height:60,
width:250,
backgroundColor: 'white,
borderStyle:Titanium.UI.INPUT_BORDERSTYLE_ROUNDED
});
win.add(text);
win.open();
Issue reproduces Tested with Titanium Studio, build: 3.0.1.201212181159 Titanium SDK version: 3.1.0 iOS iPhone Simulator: iOS SDK version: 6.0
Closing ticket due to time passed and lack of progress for a number of years. Please open a new ticket if there are any problems.