Changeset 2110


Ignore:
Timestamp:
08/17/12 09:19:28 (12 years ago)
Author:
twagoo
Message:

fixed issue with name/componentId in component summary

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ComponentRegistry/branches/ComponentRegistry-1.12.0/ComponentBrowserGui/src/main/flex/clarin/cmdi/componentregistry/editor/ComponentSummary.mxml

    r2109 r2110  
    1616        <mx:HBox>       
    1717                <mx:HBox minWidth="160"
    18                                  visible="{component.componentId == null}"
    19                                  includeInLayout="{component.componentId == null}"
     18                                 visible="{component.componentId == null || component.componentId == ''}"
     19                                 includeInLayout="{component.componentId == null || component.componentId == ''}"
    2020                                 >                     
    2121                        <mx:Label text="Name: " fontWeight="bold"/>
     
    2424               
    2525                <mx:HBox minWidth="160"
    26                                  visible="{component.componentId != null}"
    27                                  includeInLayout="{component.componentId != null}"
     26                                 visible="{component.componentId != null &amp;&amp; component.componentId != ''}"
     27                                 includeInLayout="{component.componentId != null &amp;&amp; component.componentId != ''}"
    2828                                 >                     
    2929                        <mx:Label text="ComponentId: " fontWeight="bold"/>
Note: See TracChangeset for help on using the changeset viewer.