[TIMOB-24855] Windows: Border on a TableViewRow is missing the right edge
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | Medium |
| Status | Closed |
| Resolution | Won't Fix |
| Resolution Date | 2021-02-11T12:13:44.000+0000 |
| Affected Version/s | Release 6.1.0, Release 6.1.1 |
| Fix Version/s | n/a |
| Components | Windows |
| Labels | n/a |
| Reporter | Ewan Harris |
| Assignee | Unknown |
| Created | 2017-06-20T09:50:14.000+0000 |
| Updated | 2021-02-11T12:13:44.000+0000 |
Description
When adding a border to a TableViewRow the right side of the border is missing
var _window = Ti.UI.createWindow();
var tableData = [{
title: 'Apples'
}, {
title: 'Bananas',
borderColor: 'blue',
borderWidth: 5,
}, {
title: 'Potatoes'
}];
var table = Ti.UI.createTableView({
data: tableData,
width : 250
});
_window.add(table);
_window.open();
No comments