Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Medium
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: Release 9.3.0
-
Component/s: Android
-
Labels:None
-
Story Points:5
-
Sprint:2020 Sprint 20, 2020 Sprint 21, 2020 Sprint 22, 2020 Sprint 23
Description
- Specifying Ti.UI.FILL or '100%' for TableViewRow.height does not scale to the parent TableView.height.
TEST
const win = Ti.UI.createWindow({ backgroundColor: 'gray' }); |
const row = Ti.UI.createTableViewRow({
|
height: Ti.UI.FILL,
|
title: 'View should fill TableView parent', |
backgroundColor: 'red' |
});
|
const table = Ti.UI.createTableView({
|
backgroundColor: 'white', |
data: [ row ]
|
});
|
|
win.add(table);
|
win.open();
|
EXPECTED
- TableViewRow scales to parent TableView height.
ACTUAL
- TableViewRow contents are scaled to zero and are hidden.
Attachments
Issue Links
- is cloned into
-
TIMOB-28239 iOS: TableViewRow does not scale to height of parent
-
- Open
-
-
TIMOB-28163 Android: TableViewRow ignores borderRadius
-
- Closed
-