[TIMOB-5636] MobileWeb: Not working property verticalAlign in the textField
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2017-05-02T17:14:18.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | linvalid |
Reporter | Misha Vasko |
Assignee | Chris Barber |
Created | 2011-05-24T05:29:36.000+0000 |
Updated | 2018-04-04T23:20:41.000+0000 |
Description
When changing the verticalAlign property of the textField to the value 'top' the text in the textField stays in the middle. In the code of textField element the property verticalAlign is setted to 'top'.
win = Ti.UI.currentWindow;
var tf = Ti.UI.createTextField({
width: 200,
height: 50,
value: 'I am a textfield',
fontSize: 10
})
var topbutton = Ti.UI.createButton({
top: 100,
title: 'top'
})
win.add(tf);
win.add(topbutton);
topbutton.addEventListener('click', function(){
tf.verticalAlign = 'top';
})
fixed for 'bottom' position
Resolving ticket as Won't Fix because MobileWeb is no longer supported.
Closing as will not fix.