How to disable separatorColor in table view ?

You must Login before you can answer or comment on any questions.

i have got a table view and there is two rows, i'd like remove separator in table view ? how to this problem ? Thank so much !

5 Answers

Problem resolved in Android windows7

var tableview = Ti.UI.createTableView({ separatorColor: 'transparent' });

Set the separator color to the same color as the background. It doesn't so much remove it as mask it, but achieves the same effect.

Hi,

At my app does not work:(

var tableView = Titanium.UI.createTableView({
data:rowData, 
top:80, 
separatorStyle: 'none'
});
any other solution to remove separators between rows?

Your Answer

Think you can help? Login to answer this question!