如何在钛中的特定索引处添加行

时间:2016-04-05 09:58:03

标签: appcelerator appcelerator-titanium

我有一张钛金属表,我已经添加了3行。在一个场景中,我从表table.deleteRow(index)中删除了第二行,在一些过程之后,我需要在该索引处添加一行。

任何人都可以告诉我如何在特定索引处添加行。

2 个答案:

答案 0 :(得分:5)

答案 1 :(得分:1)

以下是我尝试过的示例,屏幕截图中显示了输出。

Ti.UI.backgroundColor = 'white';
var win = Ti.UI.createWindow();

var tableData = [ {title: 'Apples'}, {title: 'Bananas'}, {title: 'Carrots'}, {title: 'Potatoes'} ];

var table = Ti.UI.createTableView({
  data: tableData
});
win.add(table);
win.open();

table .insertRowAfter(3,{title: 'Inserted After'});
table .insertRowBefore(0,{title: 'Inserted Before'});

Screenshot