[AC-1727] CLONE - When we use borderRadius in an view and add to the view textField then we have bug!
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Needs more info |
Resolution Date | 2013-04-03T13:11:51.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | n/a |
Labels | android, bug, orientation |
Reporter | Maxim Khrichtchatyi |
Assignee | Shak Hossain |
Created | 2013-04-03T05:59:41.000+0000 |
Updated | 2016-03-08T07:40:36.000+0000 |
Description
NEW! I set values for fields and nothing... Bug is open!
When we use borderRadius in an view and add to the view textField then we have bug! Titanium teem please pay attention to this problem)
Video with problem http://www.youtube.com/watch?v=S0Yi-6ZKDcw
Code example:
function ApplicationWindow() {
var self = Ti.UI.createWindow({
backgroundColor:'#ffffff',
navBarHidden:true,
exitOnClose:true
});
var scroll = Ti.UI.createScrollView({
showHorizontalScrollIndicator:false,
showVerticalScrollIndicator:true,
backgroundColor:'#333',
contentHeight:'auto',
contentWidth:'auto',
scrollType:'vertical'
});
var fieldCont = Ti.UI.createView({
borderRadius:5.0,
borderColor:'#ecf0f1',
borderWidth:2.0,
top:'20dp',
backgroundColor:'#f00',
width:'300dp',
height:'50dp'
});
var input = Ti.UI.createTextField({
hintText:'blabla',
value:'blabla',
backgroundColor:'#fff'
});
fieldCont.add(input);
scroll.add(fieldCont);
self.add(scroll);
return self;
}
Please adhere to the following guide when creating tickets: http://docs.appcelerator.com/titanium/latest/#!/guide/JIRA_Ticket_Template What is the expected result and the actual behavior? The issue can not be reproduced.