Andreas Koch created ZEPPELIN-2044: -------------------------------------- Summary: Table display does not render all rows, when height is large Key: ZEPPELIN-2044 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2044 Project: Zeppelin Issue Type: Bug Components: GUI Affects Versions: 0.7.0 Reporter: Andreas Koch Priority: Minor
When displaying a table with embedded html, not all rows are being rendered if the row heights are large. For examle: {code:title=Table with html|borderStyle=solid} println(s"""%table Image\tNumber %html <div style="height:400px;width:400px;background-color:blue;" />\t100 %html <div style="height:400px;width:400px;background-color:red;" />\t100 %html <div style="height:400px;width:400px;background-color:green;" />\t100 """) {code} This example will only render the first row. But all rows are rendered if the size of the last row is changed: {code:title=Table with html|borderStyle=solid} println(s"""%table Image\tNumber %html <div style="height:400px;width:400px;background-color:blue;" />\t100 %html <div style="height:400px;width:400px;background-color:red;" />\t100 %html <div style="height:20px;width:20px;background-color:green;" />\t100 """) {code} -- This message was sent by Atlassian JIRA (v6.3.15#6346)