Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-24855] Windows: Border on a TableViewRow is missing the right edge

GitHub Issuen/a
TypeBug
PriorityMedium
StatusClosed
ResolutionWon't Fix
Resolution Date2021-02-11T12:13:44.000+0000
Affected Version/sRelease 6.1.0, Release 6.1.1
Fix Version/sn/a
ComponentsWindows
Labelsn/a
ReporterEwan Harris
AssigneeUnknown
Created2017-06-20T09:50:14.000+0000
Updated2021-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();

Steps to reproduce

Add the above to an existing app.js

Build for a windows target

Actual

Right side of the border is missing

Expected

Border should go all the way round the row

Comments

No comments

JSON Source