我正在使用网格视图应用程序......我想要做的是当我调用特定项目时导航到特定页面。
这是我调用项目时的代码,我的 问题是我无法获取项目的索引。 一张图解释我的意思 http://www.flickr.com/photos/magedelgazzar/8409848728/in/photostream
_itemInvoked: function (args) {
var group = Data.groups.getAt(args.detail.itemIndex);
var item = Data.items.getAt(args.detail.itemIndex);
if (appView.value === appViewState.snapped) {
// If the page is snapped, the user invoked a group.
this.navigateToGroup(group.key);
} else {
// If the page is not snapped, the user invoked an item.
if ( item.index == 1 && group.index == 2 ) {
nav.navigate("../../nextPage.html", { item: Data.getItemReference(item) });
// nav.navigate("../../nextPage.html");
}
}
}
});