hello
I have a window that contains a tableview and wish to have an effect asseceur me so I can move up and down from my window
so I tried to add a container but it does not work
can you tell me what I should do
thank you
var win = Ti.UI.currentWindow; var container = Ti.UI.createScrollView({ top:0, contentHeight:'auto', layout:'vertical', width:320, bottom:0, showVerticalScrollIndicator:true, showHorizontalScrollIndicator:false }); win.add(container);
1 Answer
If you are just trying to scroll the tableview then you can try the scrollToIndex on the tableview to get the effect you're looking for.
Your Answer
Think you can help? Login to answer this question!