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.
You can use:
var tableview = Ti.UI.createTableView({ separatorStyle: 'none' });
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?
Try separatorStyle: 'transparent'
Your Answer
Think you can help? Login to answer this question!