[TIMOB-28215] iOS: ListView header/footer does not display
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Low |
Status | Open |
Resolution | Unresolved |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | iOS |
Labels | n/a |
Reporter | Gary Mathews |
Assignee | Unknown |
Created | 2020-11-02T18:29:56.000+0000 |
Updated | 2020-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
File | Date | Size |
---|---|---|
android_listView_listSection_header_footer_540x960 - Copy.png | 2020-11-02T19:01:19.000+0000 | 20416 |
listView_listSection_header_footer_540x960.png | 2020-11-02T19:00:44.000+0000 | 21124 |
No comments