在 iPhone 的 Titanium 中,如何从表格视图转换到详细视图。?
我已经创建了一个表格视图,并希望当我单击一个单元格时,应该出现一个新窗口,并且我的单元格数据应该显示在该窗口中!!!!...
这里是我的代码...
var table1 = Titanium.UI.createTableView(
{
data:[
{title:"Row 1 - simple row"},
{title:"Row 2 - Having child", hasChild:true},
{title:"Row 3 - with Details",hasDetail:true},
{title:"Row 4 - with Check",hasCheck:true},
{title:"Row 5 - red background",backgroundColor:"#f00"}
]
});
table1.addEventListener('click', function(e){
if (e.rowData)
{
var win5 = Titanium.UI.createWindow({
//url:e.rowData.test,
title:e.rowData.title
});
win5.open();
}
})
win1.add(table1);
I have created a table view and want that when i click a cell then a new window should appear and my cell data should be displayed in that window!!!!....
here my code goes...
var table1 = Titanium.UI.createTableView(
{
data:[
{title:"Row 1 - simple row"},
{title:"Row 2 - Having child", hasChild:true},
{title:"Row 3 - with Details",hasDetail:true},
{title:"Row 4 - with Check",hasCheck:true},
{title:"Row 5 - red background",backgroundColor:"#f00"}
]
});
table1.addEventListener('click', function(e){
if (e.rowData)
{
var win5 = Titanium.UI.createWindow({
//url:e.rowData.test,
title:e.rowData.title
});
win5.open();
}
})
win1.add(table1);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这对您有帮助。
Hope this helps you.