钛 TableView 行单独背景
Titanium TableView Row Seperatly Background
我在我的 wordpress 博客中获得了 5 个类别的数据并列出了 titanium 移动应用程序我在我的行上添加了行背景但是所有行的背景都相同如何单独为所有行设置背景?
这是我的正常 Table 查看屏幕
http://i.hizliresim.com/EqR4l8.png
这里是我添加的 row.backgroundImage 屏幕
http://i.hizliresim.com/VLM12r.png
我的分类.JS
$.init = function() {
var rows = [];
getCategories(function(_data) {
for (var x = 0; x < _data.length; x++) {
rows.push(Alloy.createController('category-item', {
data : _data[x]
}).getView());
}
$.categories_table.setData(rows);
APP.Loading.hide();
});
这是我的分类-items.js
$.c_title.text = args.data.name ;
$.c_counts.text = args.data.count ;
$.row.Item = args.data;
$.row.backgroundImage = 'durum.png';
与您通过 args.anyParam 的方式相同。
所以基本上 :
$.row.backgroundImage = args.data.bckImg; // which is different for each data obj you pass to your controller
使用
$.row.backgroundImage = args.data.bgImg;
并将 bgImg 添加到您的数据对象(在其中设置 name 和 count)。
我在我的 wordpress 博客中获得了 5 个类别的数据并列出了 titanium 移动应用程序我在我的行上添加了行背景但是所有行的背景都相同如何单独为所有行设置背景?
这是我的正常 Table 查看屏幕 http://i.hizliresim.com/EqR4l8.png
这里是我添加的 row.backgroundImage 屏幕 http://i.hizliresim.com/VLM12r.png
我的分类.JS
$.init = function() {
var rows = [];
getCategories(function(_data) {
for (var x = 0; x < _data.length; x++) {
rows.push(Alloy.createController('category-item', {
data : _data[x]
}).getView());
}
$.categories_table.setData(rows);
APP.Loading.hide();
});
这是我的分类-items.js
$.c_title.text = args.data.name ;
$.c_counts.text = args.data.count ;
$.row.Item = args.data;
$.row.backgroundImage = 'durum.png';
与您通过 args.anyParam 的方式相同。
所以基本上 :
$.row.backgroundImage = args.data.bckImg; // which is different for each data obj you pass to your controller
使用
$.row.backgroundImage = args.data.bgImg;
并将 bgImg 添加到您的数据对象(在其中设置 name 和 count)。