如何将合金数据绑定到tableview

时间:2015-08-28 13:38:15

标签: titanium-alloy

请指导我,我无法绑定数据

我的数据对象就像这样

    data = [
    {
    "title":"this is title one",
    "namespace":"this is namespaceone"
    },
    {
    "title":"this is title two",
    "namespace":"this is namespacetwo"
    }
]

我的myxml.xml如下

<Collection src="data"></Collection>
    <Window id="homeWin" title="HOME">

        <TableView dataCollection="data" top='50'>
            <TableViewRow>{title}</TableViewRow>
        </TableView>    
    </Window>

但它不绑定数据。 在哪里我错过了。请指导我。

1 个答案:

答案 0 :(得分:0)

要么只提供TableView id属性并执行$.<id>.data = data;,要么按照数据绑定指南使用集合:

http://docs.appcelerator.com/platform/latest/#!/guide/Alloy_Data_Binding