[TIMOB-20524] iOS: rowSeparatorInsets and setRowSeparatorInsets() does not work in tableview.
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Critical |
Status | Closed |
Resolution | Cannot Reproduce |
Resolution Date | 2019-08-26T21:56:34.000+0000 |
Affected Version/s | Release 5.2.0 |
Fix Version/s | n/a |
Components | iOS |
Labels | alloy, ios |
Reporter | Michael Stelly |
Assignee | Unknown |
Created | 2016-03-07T15:55:26.000+0000 |
Updated | 2019-08-26T21:56:34.000+0000 |
Description
row separator insets method and properties fail to set correctly.
a default app with the following index.js will demonstrate this bug. Neither call affects the row separator.
var testTable = Ti.UI.createTableView();
// testTable.setRowSeparatorInsets({
// left: 0,
// right: 0
// });
testTable.rowSeparatorInsets = {
left: 0,
right: 0
};
$.index.add(testTable);
$.index.open();
Cannot reproduce on 8.1.0.GA.