Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-28215] iOS: ListView header/footer does not display

GitHub Issuen/a
TypeBug
PriorityLow
StatusOpen
ResolutionUnresolved
Affected Version/sn/a
Fix Version/sn/a
ComponentsiOS
Labelsn/a
ReporterGary Mathews
AssigneeUnknown
Created2020-11-02T18:29:56.000+0000
Updated2020-11-02T19:01:19.000+0000

Description

- ListView does not display specified header or footer when a ListSection also contains a header and footer **TEST CASE**
const win = Ti.UI.createWindow();
const listView = Ti.UI.createListView({
    headerTitle: 'ListView.headerTitle',
    footerTitle: 'ListView.footerTitle',
    backgroundColor: 'white'
});

listView.sections = [
    Ti.UI.createListSection({
        headerTitle: 'ListSection.headerTitle',
        footerTitle: 'ListSection.footerTitle',
        items: []
    })
];

win.add(listView);
win.open();

Attachments

FileDateSize
android_listView_listSection_header_footer_540x960 - Copy.png2020-11-02T19:01:19.000+000020416
listView_listSection_header_footer_540x960.png2020-11-02T19:00:44.000+000021124

Comments

No comments

JSON Source