在 iPhone 的 Titanium 中,如何从表格视图转换到详细视图。?

发布于 2024-11-28 16:01:02 字数 690 浏览 0 评论 0原文

我已经创建了一个表格视图,并希望当我单击一个单元格时,应该出现一个新窗口,并且我的单元格数据应该显示在该窗口中!!!!...

这里是我的代码...

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很OK 2024-12-05 16:01:02
var table1 = Titanium.UI.createTableView(
{
data:[
    {title:"Row 1 - simple row", url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 2 - Having child", hasChild:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 3 - with Details",hasDetail:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 4 - with Check",hasCheck:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 5 - red background",backgroundColor:"#f00", url:"<Specify the whole path of your detail.js file>"}
]
});

table1.addEventListener('click', function(e){
if (e.rowData)
{
    var win5 = Titanium.UI.createWindow({
        url:e.rowData.url,
        title:e.rowData.title
    });
    win5.open({animated:true});

}
})

win1.add(table1);

希望这对您有帮助。

var table1 = Titanium.UI.createTableView(
{
data:[
    {title:"Row 1 - simple row", url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 2 - Having child", hasChild:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 3 - with Details",hasDetail:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 4 - with Check",hasCheck:true, url:"<Specify the whole path of your detail.js file>"},
    {title:"Row 5 - red background",backgroundColor:"#f00", url:"<Specify the whole path of your detail.js file>"}
]
});

table1.addEventListener('click', function(e){
if (e.rowData)
{
    var win5 = Titanium.UI.createWindow({
        url:e.rowData.url,
        title:e.rowData.title
    });
    win5.open({animated:true});

}
})

win1.add(table1);

Hope this helps you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文