[AC-6121] TableView with parameter "Ti.UI.SIZE" is rendered incorrectly
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | n/a | 
| Status | Resolved | 
| Resolution | Needs more info | 
| Resolution Date | 2019-02-08T17:45:44.000+0000 | 
| Affected Version/s | n/a | 
| Fix Version/s | n/a | 
| Components | n/a | 
| Labels | ios | 
| Reporter | Thomas Weber | 
| Assignee | Shak Hossain | 
| Created | 2019-01-31T20:04:48.000+0000 | 
| Updated | 2019-02-08T17:54:41.000+0000 | 
Description
<Alloy>
	<Window backgroundColor="#fff">
	<ScrollView layout="vertical" contentHeight="100%" contentWidth="100%" backgroundColor="green">
	<TableView style="Ti.UI.iOS.TableViewStyle.GROUPED" scrollable="false" height="Ti.UI.SIZE">
		<FooterView>
            <View height="44dp" layout="horizontal">
							<Button left="15">Button 1</Button>
							<Button left="25">Button 2</Button>
						</View>
        </FooterView>
				<TableViewSection headerTitle="test">
						<TableViewRow title="Row 1"></TableViewRow>
						<TableViewRow title="Row 2"></TableViewRow>
						<TableViewRow title="Row 3"></TableViewRow>
				</TableViewSection>
	</TableView>
	</ScrollView>
</Window>
</Alloy>
Attachments
| File | Date | Size | 
|---|---|---|
| IMG_8DD6D96CBBF0-1.jpeg | 2019-02-08T14:28:17.000+0000 | 123911 | 
| Simulator Screen Shot - iPhone X - 2019-02-08 at 15.22.14.png | 2019-02-08T14:25:56.000+0000 | 68323 | 
| Simulator-Screen-Shot---iPhone-XS-Max---2019-01-31-at-21.01.01.gif | 2019-01-31T20:01:54.000+0000 | 10515 | 
Hello, Thanks for reporting this. Would you mind providing more information for the issues you are experiencing? Are you experiencing this on device also?
Hello, We have not heard back from you since our last update.I just wanted to follow up with you about this issue? Are you still experiencing this problem? Please let us know if you need more help with this issue.
Same effect on device as on simulator. Also tried a new "classic" with that code:
var window = Ti.UI.createWindow({ backgroundColor : 'white', layout:'vertical' }); var rows = [ {title:'row1'}, {title:'row2'}, {title:'row3'} ]; var table = Ti.UI.createTableView({ height:Ti.UI.SIZE, data:rows, top:0 }); window.add(table); window.open();Really? What more information do you need?