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

Adding Buttons over the Banner Rotator

3 Answers 64 Views
Rotator
This is a migrated thread and some comments may be shown as answers.
deva
Top achievements
Rank 1
deva asked on 02 Dec 2010, 06:09 AM
Hi
    In  my application i need a banner rotator with buttons in it...  which is similar to the Telerik home page banner rotator....
I am able to generate the banner but i am unable to add buttons over the banner...
Knidly let me know if there is any method to achieve the banner rotator with buttons over the image...

3 Answers, 1 is accepted

Sort by
0
Fiko
Telerik team
answered on 07 Dec 2010, 09:52 AM
Hi Deva,

You can change the default position of the RadRotator's buttons by overriding the settings applied in these classes:
.rrButtonRight
{
    right: 10px !important;
}
           
.rrButtonLeft
{
    right: 10px !important;
}



Greetings,
Fiko
the Telerik team
Browse the vast support resources we have to jumpstart your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
0
deva
Top achievements
Rank 1
answered on 22 Dec 2010, 05:42 AM
Hi
  Thanks for the reply...
Actually i am seeking for adding radbutton over the banner rotator...
the example you have given works well for rotator button...
would you please help me in adding radbutton over the banner rotator like the telerik homepage banner rotator...
0
Fiko
Telerik team
answered on 27 Dec 2010, 09:26 AM
Hello Deva,

You can use the RadRotator's ControlButtons inner property in order to set custom buttons:
protected void Page_Load(object sender, EventArgs e)
{
    RadRotator1.ControlButtons.LeftButtonID = rtbLeftButton.ClientID;
    RadRotator1.ControlButtons.RightButtonID = rtbRightButton.ClientID;
}

I hope this helps.

All the best,
Fiko
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Tags
Rotator
Asked by
deva
Top achievements
Rank 1
Answers by
Fiko
Telerik team
deva
Top achievements
Rank 1
Share this question
or