hi my dear friends :
i am using RadListBox in my Project (asp.net with c# with vs2010)
also i am using some link buttons in itemTemplate...
i want to change the color of these LinkButtons when we hover or select an item in ListBox! (Client Side Programming)
my RadListBox Is Like This :
<telerik:RadListBox ID="RadlbOfImageGroup" runat="server" DataKeyField="ID" DataSortField="Title" DataSourceID="sdsImagesGroup" DataTextField="Title" DataValueField="ID" Skin="BlackByMe" EnableEmbeddedSkins="False" EmptyMessage="No Records!"> <ButtonSettings TransferButtons="All" /> <HeaderTemplate> <div id="Header_RadlbOfImageGroup"><h5>Header Area</h5></div></HeaderTemplate> <ItemTemplate> <asp:LinkButton ID="lbTitleOfIG" CssClass="lbTitleOfIGclass" runat="server" CausesValidation="False"><%# Eval("Title") %></asp:LinkButton> <asp:Label ID="lblTitleOfIG" CssClass="lblTitleOfIGclass" runat="server" Text='<%# Eval("Title") %>'></asp:Label> <asp:LinkButton ID="lbEditOfIG" CssClass="lbEditOfIGclass" runat="server" CausesValidation="False" CommandName="Edit">Edit</asp:LinkButton> <asp:LinkButton ID="lbDeleteOfIG" CssClass="lbDeleteOfIGclass" runat="server" CausesValidation="False" CommandName="Delete">Delete</asp:LinkButton> </ItemTemplate> </telerik:RadListBox>
i want to change the color of lbTitleOfIG during hover and select of an item !
how can i do this job?
thanks for attention