我正在尝试使用Titanium和Javascript为iOS创建Alphabetical Scroll Bar(就像在iOS Contacts中一样)。我修改了一些代码here
我正在尝试调整它,以便当用户选择特定行时,它会将“clientname”传递给新窗口。代码和/或最有可能我尝试调整它的方法有两个问题。直接在“标题”行(A,B,C ...)之后的第一行选择时什么都不做,第一行之后的第一行确实将用户引导到新窗口但没有传递“clientname”。有人可以告诉我将使这项工作的代码?我正在使用OS 10.7.5,Titanium Studio Build:jenkins-titanium-rcp-release-788(origin / release)日期:2013年2月20日,12:04:51。这是我的代码: 注意:以下代码是问题解决后的工作代码
var win = Titanium.UI.currentWindow;
win.barColor='#336699';
win.title='Alphabetical List';
win.backgroundImage='images/background.png';
var db = (function() {
var api = {};
api.all_item_names = function() {
var conn = Ti.Database.install('mydb].sqlite','clients');
var results = [];
var resultSet = conn.execute('select * from clients order by clientname asc');
while ( resultSet.isValidRow()) {
results.push({
clientname: resultSet.fieldByName('clientname'),
});
resultSet.next();
}
resultSet.close();
return results;
};
return api;
}());
var tvrow;
var curheader = 'A';
var list = [];
var index = [];
var data = [];
var isAndroid = (Titanium.Platform.name == 'android');
list = ( db.all_item_names() );
for ( var ipos=0; ipos<list.length;ipos++){
if( list[ipos].clientname[0] != curheader){
curheader = list[ipos].clientname[0];
tvrow = Titanium.UI.createTableViewRow({
height: 40,
path:'clientdetail.js' ,
client: list[ipos],
header: curheader
});
index.push({title:curheader, index:ipos});
} else {
tvrow = Titanium.UI.createTableViewRow({
height:40,
path:'clientdetail.js' ,
client: list[ipos]});
}
var title= Titanium.UI.createLabel({
left: 5,
top: 2,
height: 40,
color: '#000',
font: {fontSize: 14, fontWeight: 'normal', fontFamily: (isAndroid?'sans-serif':'Helvetica Neue')},
text: list[ipos].clientname });
tvrow.add(title);
data.push(tvrow);
}
var tableView = Titanium.UI.createTableView({
data: data,
index: index,
backgroundColor:'transparent',
separatorStyle: Titanium.UI.iPhone.TableViewStyle.GROUPED,
top: 1,
width: '99%'
});
tableView.addEventListener('click', function(e)
{
if (e.rowData.path)
{
var win = Ti.UI.createWindow({
url:e.row.path,
title:e.row.clientname
});
var client = e.row.client;
win.client = client.clientname;
Ti.UI.currentTab.open(win);
}
});
win.add(tableView);