[TIMOB-5645] MobileWeb: Incorrect representation of style properties in pickerRow
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Low |
| Status | Closed |
| Resolution | Won't Fix |
| Resolution Date | 2017-05-02T17:15:08.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-06-01T03:04:10.000+0000 |
| Updated | 2018-04-04T23:20:40.000+0000 |
Description
When applying style properties(borderWidth, borderColor, opacity, fontStyle, etc) to the pickerRow the property become visible only when the concrete pickerRow is selected.
var win = Ti.UI.currentWindow;
var picker = Ti.UI.createPicker({
top: 10,
left: 10,
width: 100,
height: 40
});
p1 = Ti.UI.createPickerRow({title: 'Option1'});
p2 = Ti.UI.createPickerRow({title: 'Option2'});
p3 = Ti.UI.createPickerRow({title: 'Option3'});
p4 = Ti.UI.createPickerRow({title: 'Option4'});
p5 = Ti.UI.createPickerRow({title: 'Option5'});
win.add(picker);
picker.add(p1);
picker.add(p2);
picker.add(p3);
picker.add(p4);
picker.add(p5);
p5.backgroundColor = 'green';
p4.borderWidth = 5;
p4.borderColor = 'red';
p3.opacity = 0.5;
p2.fontStyle = 'italic';
Resolving ticket as Won't Fix because MobileWeb is no longer supported.
Closing as will not fix.