This is a migrated thread and some comments may be shown as answers.

RadTicker - Text Hyperlink

3 Answers 87 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Jayesh
Top achievements
Rank 1
Jayesh asked on 24 Oct 2010, 12:59 PM
Hi,

I am just wondering, how do I add Hyper Link to  <telerik:RadTickerItem>Breaking News: Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt</telerik:RadTickerItem>?

Thank you

Jayesh



3 Answers, 1 is accepted

Sort by
0
Accepted
Georgi Tunev
Telerik team
answered on 25 Oct 2010, 12:10 PM
Hi Jayesh ,

There is a NavigateUrl that you can use:
<telerik:RadTickerItem NavigateUrl="some link">ticket's text....


Regards,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Hilda
Top achievements
Rank 1
answered on 13 Oct 2011, 01:31 PM
Hello,

i am using this

<telerik:RadTicker CssClass="TickerClass" AutoStart="true" runat="server" ID="TickerScrollingNews" Loop="true" DataTextField="Title" TickSpeed="100" LineDuration="100" DataNavigateUrlField = "ID">

<Items> 

<telerik:RadTickerItem ID="PickerItem" runat="server" CssClass="TickerLink" />

 

</Items>

 

</telerik:RadTicker>

the RadTickerItem is not taking the class if i remove the navigation everything works fine 

Thanks

0
Shinu
Top achievements
Rank 2
answered on 14 Oct 2011, 05:53 AM
Hello Hilda,

When you are trying to style Hyperlinks with CSS you need to use the following selectors/pseudo-classes
  • a
  • a:link
  • a:visited
  • a:hover
  • a:active

Sample CSS is,
.TickerLink,a
   {
       color:Red !important;
       text-decoration:none !important;
    }
Thanks,
Shinu.
Tags
General Discussions
Asked by
Jayesh
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Hilda
Top achievements
Rank 1
Shinu
Top achievements
Rank 2
Share this question
or