AnimationExtender and TreeView Control

Last post 12-05-2006 9:55 AM by DuNuNubatman. 0 replies.

Sort Posts:

  • AnimationExtender and TreeView Control

    12-05-2006, 9:55 AM
    • Member
      55 point Member
    • DuNuNubatman
    • Member since 11-09-2005, 11:07 AM
    • Posts 11

    Defining animations using the AnimationExtender is pretty cool... How can I use animation on the node hovered over instead of the entire control. For example I have this code:

    <asp:TreeView ID="TreeView1" runat="server" DataSourceID="SiteMapDataSource1" />
                
    <ajax:AnimationExtender runat="server" TargetControlID="TreeView1">
        <Animations>
            <OnHoverOver>
                <FadeOut Duration=".5" Fps="20" />
            </OnHoverOver>
            <OnHoverOut>
                <FadeIn Duration=".5" Fps="20" />             
            </OnHoverOut>
        </Animations>
    </ajax:AnimationExtender>
     How can I animate the node being hovered over instead of the entire control when I hover over it?
Page 1 of 1 (1 items)