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 "Scott Boyd (JIRA)" <xa...@incubator.apache.org> on 2007/08/01 03:29:52 UTC

[jira] Created: (XAP-508) borderPane does not render labels correctly

borderPane does not render labels correctly
-------------------------------------------

                 Key: XAP-508
                 URL: https://issues.apache.org/jira/browse/XAP-508
             Project: XAP
          Issue Type: Bug
          Components: Widgets: Layouts
            Reporter: Scott Boyd
            Assignee: James Margaris


try this NXML.  only North and East render in FF2 and IE6

<xal xmlns="http://openxal.org/ui/html">
  <rootPane>
      <borderPane>
        <label height="25px" text="Label North" borderPosition="north"/>
        <label height="25px" text="Label South" borderPosition="south"/>
        <label text="Label East" width="100px" borderPosition="east"/>
        <label text="Label West" width="100px" borderPosition="west"/>
        <label text="Label Center" borderPosition="center"/>
      </borderPane>
  </rootPane>
</xal>

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


[jira] Closed: (XAP-508) borderPane does not render labels correctly

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

Trevor Oldak closed XAP-508.
----------------------------


> borderPane does not render labels correctly
> -------------------------------------------
>
>                 Key: XAP-508
>                 URL: https://issues.apache.org/jira/browse/XAP-508
>             Project: XAP
>          Issue Type: Bug
>          Components: Widgets: Layouts
>            Reporter: Scott Boyd
>            Assignee: James Margaris
>
> try this NXML.  only North and East render in FF2 and IE6
> <xal xmlns="http://openxal.org/ui/html">
>   <rootPane>
>       <borderPane>
>         <label height="25px" text="Label North" borderPosition="north"/>
>         <label height="25px" text="Label South" borderPosition="south"/>
>         <label text="Label East" width="100px" borderPosition="east"/>
>         <label text="Label West" width="100px" borderPosition="west"/>
>         <label text="Label Center" borderPosition="center"/>
>       </borderPane>
>   </rootPane>
> </xal>

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


[jira] Resolved: (XAP-508) borderPane does not render labels correctly

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

James Margaris resolved XAP-508.
--------------------------------

    Resolution: Fixed

BorderPane adds a class that makes things absolute positioned, but label was hardcoded in the style object to always be relative so it didn't take. One line fix of removing the hardcoded relative position from label.

Should test a bunch of label-related stuff to verify no side effects.

> borderPane does not render labels correctly
> -------------------------------------------
>
>                 Key: XAP-508
>                 URL: https://issues.apache.org/jira/browse/XAP-508
>             Project: XAP
>          Issue Type: Bug
>          Components: Widgets: Layouts
>            Reporter: Scott Boyd
>            Assignee: James Margaris
>
> try this NXML.  only North and East render in FF2 and IE6
> <xal xmlns="http://openxal.org/ui/html">
>   <rootPane>
>       <borderPane>
>         <label height="25px" text="Label North" borderPosition="north"/>
>         <label height="25px" text="Label South" borderPosition="south"/>
>         <label text="Label East" width="100px" borderPosition="east"/>
>         <label text="Label West" width="100px" borderPosition="west"/>
>         <label text="Label Center" borderPosition="center"/>
>       </borderPane>
>   </rootPane>
> </xal>

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