Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-5636] MobileWeb: Not working property verticalAlign in the textField

GitHub Issuen/a
TypeBug
PriorityLow
StatusClosed
ResolutionWon't Fix
Resolution Date2017-05-02T17:14:18.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsMobileWeb
Labelslinvalid
ReporterMisha Vasko
AssigneeChris Barber
Created2011-05-24T05:29:36.000+0000
Updated2018-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';
})

Comments

  1. Maxim Negadaylov 2011-06-08

    fixed for 'bottom' position
  2. Lee Morris 2017-05-02

    Resolving ticket as Won't Fix because MobileWeb is no longer supported.
  3. Eric Merriman 2018-04-04

    Closing as will not fix.

JSON Source