Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-1828] Android: Implement Tableview Custom Footer

GitHub Issuen/a
TypeNew Feature
PriorityLow
StatusClosed
ResolutionInvalid
Resolution Date2017-06-02T23:33:10.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsAndroid
Labelsandroid, feature
ReporterDon Thorp
AssigneeIngo Muschenetz
Created2011-04-15T03:03:20.000+0000
Updated2017-06-02T23:33:10.000+0000

Description

See http://developer.appcelerator.com/helpdesk/view/43431">Helpdesk 43431

var headerView = Ti.UI.createView({
    backgroundColor:'transparent',
    width:win.size.width,
    height:'auto',
    backgroundImage:'images/01_title_bar_base.png'
});
var tableview = Ti.UI.createTableView({
    backgroundImage:'images/Background_gradient_320x480.png',
    width:win.size.width,
    height:win.size.height,
    //footerView:headerView,
    search:search,
    filterAttribute:'title'
});
 
if (Ti.Platform.osname == 'iphone') {
    tableview.addEventListener('scrollEnd', function(e) {
        if (dataObj.getNextCall()) {
            dataObj.callNext();
        };
    });
} else {
    footerView=headerView;
};

Comments

  1. Lee Morris 2017-06-02

    Little information for any progress to be made, closing.

JSON Source