Hi,
Am trying to remove the background color on my tableview and would like to make it transparent. I can change to another color, but how do I remove the color totally?
Here is my code
tableView = Titanium.UI.createTableView({data:rowData});//, separatorColor:'transparent'}); tableView.backgroundColor = 'blue';
Thanks,
Steve
1 Answer
Hello, What you can do is setting background color as transparent:
tableView.backgroundColor = 'transparent';
Your Answer
Think you can help? Login to answer this question!