The showToolTip property is set to TRUE by default... No changes
visible when I force it to true. Please any help will be appreciated.


--- In flexcoders@yahoogroups.com, "Sreenivas R"
<[EMAIL PROTECTED]> wrote:
>
> You need to set the showToolTip property of CheckBox to true.
> 
> On 3/16/06, nahruka <[EMAIL PROTECTED]> wrote:
> >
> > Hi all,
> >
> > I've implemented a custom TileList with Flex 1.5 which cellRenderer is
> > also a custom component named Grup. Why are Grup tooltips not
showed ???
> >
> > Here is MyList.mxml:
> >
> > <?xml version="1.0" encoding="utf-8"?>
> > <mx:TileList xmlns:mx="http://www.macromedia.com/2003/mxml";  xmlns="*"
> >        dataProvider="{mx.utils.ArrayUtil.toArray(dataObject.tema)}"
> >        cellRenderer="Components.Grup" >
> >
> > <mx:Script>
> >    var dataObject: Object;
> >    function setValue(str: String, item: Object) {
> >      if (item==undefined) {
> >        visible = false;
> >        return;
> >      } else {
> >        dataObject=item;
> >        visible=true;
> >      }
> >    }
> >   </mx:Script>
> > </mx:TileList>
> > ----------------------------------------------------------------------
> >
> > And Grup.mxml:
> >
> > <?xml version="1.0" encoding="utf-8"?>
> > <mx:VBox  xmlns:mx="http://www.macromedia.com/2003/mxml"; xmlns="*"
> > verticalAlign="top"
> > marginBottom="8" marginTop="8" marginLeft="8" marginRight="8">
> >
> > <mx:Script>
> >    var dataObject: Object;
> >    function setValue(str: String, item: Object) {
> >      if (item==undefined) {
> >        visible = false;
> >        return;
> >      } else {
> >        dataObject=item;
> >        visible=true;
> >      }
> >    }
> >   </mx:Script>
> >
> > <mx:CheckBox label="{dataObject.nom}" styleName="titol14"
> > toolTip="Hello!"></mx:CheckBox>
> >
> > </mx:VBox>
> >
> >
> >
> >
> >
> > --
> > Flexcoders Mailing List
> > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
> > Search Archives:
http://www.mail-archive.com/flexcoders%40yahoogroups.com
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> >
> >
> >
>









--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to