HI i have one table with 2 rows --- row11 and row22 in row11 i wanted to show mapview with specific height in row22 i want to display one table containing 8 rows... i can add ..... But i can't scroll the table....is there any method??
i want to develop for android app
2 Answers
Any one have an idea??
have you consider using http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.ScrollView and http://docs.appcelerator.com/titanium/latest/#!/api/Titanium.UI.ScrollableView
since your problem with the add is that your row didnt know the height of the table which you have added to it, so another way is that you have to update the height of the row after adding the table to it ..
//after adding the table to the row row22.height = inlinetable.height; // for example, but you have to know the height of your table first
Your Answer
Think you can help? Login to answer this question!