Adding links to a Panel container’s status text in Flex

简介:

The following example shows how you can assign an HTML formatted string to a Panel container’s status text field using the getStatusTextField() method in the mx_internal namespace.

Full code after the jump.

 

Since this example uses the mx_internal namespace, you can’t always depend on this behavior to work in future versions of the Flex SDK. Use at your own risk.

<? xml version="1.0" encoding="utf-8" ?>
<!--  http://blog.flexexamples.com/2008/04/17/adding-links-to-a-panel-containers-status-text-in-flex/  -->
< mx:Application  xmlns:mx ="http://www.adobe.com/2006/mxml"
        layout
="vertical"
        verticalAlign
="middle"
        backgroundColor
="white"
        creationComplete
="init();" >

    
< mx:Script >
        
<![CDATA[
            import mx.core.IUITextField;
            import mx.controls.Alert;

            private function init():void {
                var tf:IUITextField = panel.mx_internal::getStatusTextField();
                tf.selectable = true;
                tf.addEventListener(TextEvent.LINK, textField_link);
                tf.htmlText = "status with <a href='event:showAlert'><u>link</u></a>";

            }

            private function textField_link(evt:TextEvent):void {
                Alert.show("Success! A Panel container with a link in the status text.", evt.text);
            }
        
]]>
    
</ mx:Script >

    
< mx:Panel  id ="panel"
            title
="Title"
            status
="status with link"
            width
="320"
            height
="240" >
        
< mx:Text  text ="Click the link in the Panel container's status bar to launch an Alert control."
                width
="100%"  selectable ="false"   />
        
< mx:ControlBar >
            
< mx:Text  htmlText ="&lt;b&gt;Note:&lt;/b&gt; The status text field must have it's selectable property set to true in order to dispatch the link event."
                    width
="100%"  selectable ="false"   />
        
</ mx:ControlBar >
    
</ mx:Panel >

</ mx:Application >





    本文转自 OldHawk  博客园博客,原文链接:http://www.cnblogs.com/taobataoma/archive/2008/04/23/1167844.html,如需转载请自行联系原作者



相关文章
how is opportunity detail page display first item by default
how is opportunity detail page display first item by default
72 0
how is opportunity detail page display first item by default
ng-repeat part1 - how UI is rendered from {{name}} to actual value
ng-repeat part1 - how UI is rendered from {{name}} to actual value
ng-repeat part1 - how UI is rendered from {{name}} to actual value
the title and note has maintained the same text type
the title and note has maintained the same text type
81 0
the title and note has maintained the same text type
OPA 15 - find existing item by its type.note
Created by Wang, Jerry, last modified on Nov 08, 2015
124 0
OPA 15 - find existing item by its type.note
Cannot find source code based button in SE24
When you are logging on to customer system for incident handling, you want to switch to source code to perform some keyword search. However, you could not find button “Source code based builder” in toolbar, with following warning message: ———————————————— 版权声明:本文为CSDN博主「汪子熙」的原创文章,遵循CC 4.0 BY-SA版权协
Cannot find source code based button in SE24
why Participants tab in GM6 is hidden - by extension
Created by Wang, Jerry, last modified on May 20, 2015
81 0
why Participants tab in GM6 is hidden - by extension
|
Web App开发
How to find root cause of creation navigation failur
Created by Jerry Wang, last modified on Dec 09, 2014
109 0
How to find root cause of creation navigation failur