将行附加到现有表(钛)

时间:2014-09-25 21:04:46

标签: titanium-alloy

    var row = Titanium.UI.createTableViewRow({
        chatId : data.chat_id,
        title: 'New Account ',
        backgroundColor: '#FFFFFF',
        selectedBackgroundColor : 'transparent',
        selectionStyle : 'Titanium.UI.iPhone.TableViewCellSelectionStyle.NONE on createTableViewRow',
        width : '100%',
        height : '60'
    });


    $.tableview.appendRow = row;
尽管有以下文档,但

似乎无法正常工作。

干杯。

1 个答案:

答案 0 :(得分:1)

appendRow是一种方法而不是属性,所以你必须改变:

$.tableview.appendRow = row;

为:

$.tableview.appendRow(row);