简体   繁体   中英

Adobe Flex: toolTip of a spark component with enabled=false

I have a Spark Component (a Group) which doesn't behave as wanted.
The tooltip is only shown when the component is enabled=true which the following example shows:

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx"
               creationComplete="init(event)">
    <s:layout>
        <s:HorizontalLayout />
    </s:layout>

    <s:Group toolTip="test" enabled="false">

    </s:Group>
    <mx:Canvas toolTip="test" enabled="false">

    </mx:Canvas>
</s:Application>

In the Halo component the toolTip is shown. And this is what I want to achieve.

In my case I want to try something like this:

<s:Group toolTip="{cartEntries > 0 ? 'great!' : 'go and buy!'}"></s:Group>

Any hints?

唯一的解决方法:使用工具提示创建启用的包装容器。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM