获取 TableViewRow 中的行 id
Get the row id in TableViewRow
下面的代码在 tableview 中打印 "local" 模型,它的工作,现在我的问题是通过单击每一行来获取行 ID 或行详细信息。我在每一行上附加了 showDetail 函数以获取行 detail.But 无法获取行 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);
}
查看 TableView API 单击事件:
http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.TableView-event-click
所有属性都有:例如索引=行数
并查看 row 和 rowData
下面的代码在 tableview 中打印 "local" 模型,它的工作,现在我的问题是通过单击每一行来获取行 ID 或行详细信息。我在每一行上附加了 showDetail 函数以获取行 detail.But 无法获取行 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);
}
查看 TableView API 单击事件:
http://docs.appcelerator.com/platform/latest/#!/api/Titanium.UI.TableView-event-click
所有属性都有:例如索引=行数
并查看 row 和 rowData