[TIMOB-5626] MobileWeb: Event 'selected' doesn't work with textArea.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Closed |
Resolution | Won't Fix |
Resolution Date | 2018-04-04T23:57:42.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | MobileWeb |
Labels | n/a |
Reporter | Misha Vasko |
Assignee | Chris Barber |
Created | 2011-05-24T06:08:32.000+0000 |
Updated | 2018-04-05T00:00:03.000+0000 |
Description
Event 'selected' not works with textArea object. The label should be appear when the text in the textField is selected.
win = Ti.UI.currentWindow;
ta = Ti.UI.createTextArea({
width: 200,
height: 100,
top: 10,
left: 10,
value: 'textArea'
})
ta.addEventListener('selected', function(){
var label = Ti.UI.createLabel({
text: 'selected works',
backgroundColor:'red',
top: 150
})
win.add(label);
})
win.add(ta);
Bug is still present.
Closing as will not fix
Closing as will not fix