How to change the font-color in a TableView. Other elements can be changend with the color attribute.
When i run the app on my Android Phone the table is displayed, but the font-color is still grey/white. There are also no table borders. I want to set the color to black.
// create an array of anonymous objects
var tbl_data = [
    {title:'Row 1'},
    {title:'Row 2'},
    {title:'Row 3'}
];
// now assign that array to the table's data property to add those objects as rows
var table = Ti.UI.createTableView({
    data:tbl_data,
    color: '#000000'
});
amountView.add(table);
				
                        
According to Titanium docs;
TableViewdoes not havecolorproperty.What you can do is create
TableViewRowand add them toTableView; and finally applyingTableViewRow'scolorproperty. Example below: