Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-6791] iOS: textArea should accept borderStyles being set just as textField does

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2017-07-10T22:20:59.000+0000
Affected Version/sRelease 1.8.0.1, Release 3.1.0
Fix Version/sn/a
ComponentsiOS
Labelsapi, parity
ReporterJon Alter
AssigneeIngo Muschenetz
Created2011-12-20T13:19:48.000+0000
Updated2017-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();

Comments

  1. Shameer Jan 2013-05-10

    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
  2. Lee Morris 2017-07-10

    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.

JSON Source