You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-dev@incubator.apache.org by "Trevor Oldak (JIRA)" <xa...@incubator.apache.org> on 2006/12/12 19:14:20 UTC

[jira] Created: (XAP-210) Widgets: Table: Table height 0 if unspecified in horizontalFlowPane

Widgets: Table: Table height 0 if unspecified in horizontalFlowPane
-------------------------------------------------------------------

                 Key: XAP-210
                 URL: http://issues.apache.org/jira/browse/XAP-210
             Project: XAP
          Issue Type: Bug
          Components: Widgets
            Reporter: Trevor Oldak
            Priority: Minor


This is related to issue 162, though 162 is closed because the issue has changed.
A table such as this:
				<table id="messagesTable">
					<column>
						<header text="Topic        "/>
					</column>
					<column>
						<header text="Type         "/>
					</column>
					<column>
						<header text="Content      "/>
					</column>
					<row height="50px">
						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
					</row>
				</table>

Displays fine by itself.

However, this:

			<horizontalFlowPane borderPosition="center" backgroundColor="#FF0000">
				
				<table id="messagesTable">
					<column>
						<header text="Topic        "/>
					</column>
					<column>
						<header text="Type         "/>
					</column>
					<column>
						<header text="Content      "/>
					</column>
					<row height="50px">
						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
					</row>
				</table>
				<label text="foo" height="100px"/>
			</horizontalFlowPane>

Shows that the table collapses without a specified height


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (XAP-210) Widgets: Table: Table height 0 if unspecified in horizontalFlowPane

Posted by "James Margaris (JIRA)" <xa...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/XAP-210?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

James Margaris updated XAP-210:
-------------------------------

    Component/s:     (was: Widgets: Other)
                 Widgets: Layouts

> Widgets: Table: Table height 0 if unspecified in horizontalFlowPane
> -------------------------------------------------------------------
>
>                 Key: XAP-210
>                 URL: https://issues.apache.org/jira/browse/XAP-210
>             Project: XAP
>          Issue Type: Bug
>          Components: Widgets: Layouts
>            Reporter: Trevor Oldak
>            Priority: Minor
>
> This is related to issue 162, though 162 is closed because the issue has changed.
> A table such as this:
> 				<table id="messagesTable">
> 					<column>
> 						<header text="Topic        "/>
> 					</column>
> 					<column>
> 						<header text="Type         "/>
> 					</column>
> 					<column>
> 						<header text="Content      "/>
> 					</column>
> 					<row height="50px">
> 						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
> 					</row>
> 				</table>
> Displays fine by itself.
> However, this:
> 			<horizontalFlowPane borderPosition="center" backgroundColor="#FF0000">
> 				
> 				<table id="messagesTable">
> 					<column>
> 						<header text="Topic        "/>
> 					</column>
> 					<column>
> 						<header text="Type         "/>
> 					</column>
> 					<column>
> 						<header text="Content      "/>
> 					</column>
> 					<row height="50px">
> 						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
> 					</row>
> 				</table>
> 				<label text="foo" height="100px"/>
> 			</horizontalFlowPane>
> Shows that the table collapses without a specified height

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (XAP-210) Widgets: Table: Table height 0 if unspecified in horizontalFlowPane

Posted by "Trevor Oldak (JIRA)" <xa...@incubator.apache.org>.
     [ https://issues.apache.org/jira/browse/XAP-210?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Trevor Oldak updated XAP-210:
-----------------------------

    Description: 
This is related to issue 162, though 162 is closed because the issue has changed.
A table such as this:
				<table id="messagesTable">
					<column>
						<header text="Topic        "/>
					</column>
					<column>
						<header text="Type         "/>
					</column>
					<column>
						<header text="Content      "/>
					</column>
					<row>
						<cell text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
					</row>
				</table>

Displays fine by itself.

However, this:

<xal xmlns="http://openxal.org/ui">
<horizontalFlowPane width="500px">
<table id="messagesTable">
    <column>
        <header text="Topic "/>
    </column>
    <column>
        <header text="Type "/>
    </column>
    <column>
        <header text="Content "/>
    </column>
    <row>
        <cell text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
    </row>
</table>
<label text="foo" height="100px"/>
</horizontalFlowPane>
</xal>

Shows that the table collapses without a specified height


  was:
This is related to issue 162, though 162 is closed because the issue has changed.
A table such as this:
				<table id="messagesTable">
					<column>
						<header text="Topic        "/>
					</column>
					<column>
						<header text="Type         "/>
					</column>
					<column>
						<header text="Content      "/>
					</column>
					<row height="50px">
						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
					</row>
				</table>

Displays fine by itself.

However, this:

			<horizontalFlowPane borderPosition="center" backgroundColor="#FF0000">
				
				<table id="messagesTable">
					<column>
						<header text="Topic        "/>
					</column>
					<column>
						<header text="Type         "/>
					</column>
					<column>
						<header text="Content      "/>
					</column>
					<row height="50px">
						<cell height="25px" text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
					</row>
				</table>
				<label text="foo" height="100px"/>
			</horizontalFlowPane>

Shows that the table collapses without a specified height



Fixed an issue with the sample xal.

> Widgets: Table: Table height 0 if unspecified in horizontalFlowPane
> -------------------------------------------------------------------
>
>                 Key: XAP-210
>                 URL: https://issues.apache.org/jira/browse/XAP-210
>             Project: XAP
>          Issue Type: Bug
>          Components: Widgets: Layouts
>            Reporter: Trevor Oldak
>            Priority: Minor
>
> This is related to issue 162, though 162 is closed because the issue has changed.
> A table such as this:
> 				<table id="messagesTable">
> 					<column>
> 						<header text="Topic        "/>
> 					</column>
> 					<column>
> 						<header text="Type         "/>
> 					</column>
> 					<column>
> 						<header text="Content      "/>
> 					</column>
> 					<row>
> 						<cell text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
> 					</row>
> 				</table>
> Displays fine by itself.
> However, this:
> <xal xmlns="http://openxal.org/ui">
> <horizontalFlowPane width="500px">
> <table id="messagesTable">
>     <column>
>         <header text="Topic "/>
>     </column>
>     <column>
>         <header text="Type "/>
>     </column>
>     <column>
>         <header text="Content "/>
>     </column>
>     <row>
>         <cell text="a" backgroundColor="#FF0000"/><cell text="b"/><cell text="c"/>
>     </row>
> </table>
> <label text="foo" height="100px"/>
> </horizontalFlowPane>
> </xal>
> Shows that the table collapses without a specified height

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.