Let me come out very clear. I have some buttons in my Model Window.
var row = Ti.UI.createTableViewRow({height:50});
var row2 = Ti.UI.createTableViewRow({
height:'auto'
});
row2.add(Button);
row2.add(Image);
var data = [row,row2];
var table = Ti.UI.createTableView({
data:data
});
I want 7 TextField dynamically in the first row. The second row remains static but the first one should grow
Do you mean to make an array to be used to create a TableView? Then do something like