Description
Using the code below, when adding a footerView or headerView to a TableView after the rows data has been set they will not show
var _window = Ti.UI.createWindow();
var v = Ti.UI.createView({
width: Ti.UI.FILL,
height: 50,
backgroundColor: 'red'
});
var t = Ti.UI.createTableView({
footerView: v
});
t.setData([{title: 'Row 1'}]);
t.setHeaderView(Ti.UI.createView({
width: Ti.UI.FILL,
height: 50,
backgroundColor: 'red'
}));
_window.add(t);
_window.open();
Steps to reproduce
Add the above to an existing app.js
Build for a windows target
Actual
View is not added
Expected
View should be added
Probably a dupe of TIMOB-24116, my bad
https://github.com/appcelerator/titanium_mobile_windows/pull/1148
Changes are seen in 7.0.0.v20171115153702.