以下代码在tableview中打印“本地”模型,它的工作原理,现在我的问题是通过单击每一行来获取行id或行详细信息。我已经在每一行上附加了 showDetail 函数来获取行详细信息。但是无法获取行attch数据。我怎样才能实现这一目标,请帮助我,我非常感谢您的回答。
<TableView dataCollection="local">
<TableViewRow onClick="showDetail">
<View layout="horizontal">
<ImageView image="{image}" width="50" height="50"/>
<Label id="name" text="{title}"></Label>
</View>
</TableViewRow>
</TableView>
function showDetail(e){
console.log(e.index);
}
答案 0 :(得分:1)
查看TableView API单击事件:
http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.TableView-event-click
有所有属性:例如 index =行数
看一下行和 rowData