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

Chege default delete icon of appointment.

1 Answer 86 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Hrushikesh Mokashi
Top achievements
Rank 1
Hrushikesh Mokashi asked on 21 Oct 2008, 12:47 PM
Hi All,
I am using RadScheduler

I change the icon for delete appointment

By adding following css.


.RadScheduler_Outlook .rsAptDelete
{
    background:url('images/NewDeleteIcon.gif') no-repeat;
    height:11px;
    right:3px;
    top:3px;
    width:11px;
    text-indent:-99em;
}



But When first time when Radscheduler load it shows the default icon for delete appointment.
When i go to other view from the default view.(ie. from day to week view) it show me the new icon which are i applied in css.
Then after it shows the new delete appointment icon.

I want to show the new icon for delete appointment when Radscheduler load first time.
how can i solve this problem ?
Please help me.
Thanks

1 Answer, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 22 Oct 2008, 12:40 PM
Hello Hrushikesh,

Probably you need to increase the specificity of the css selector. Try using "!important"

.RadScheduler_Outlook .rsAptDelete
{
    background:url('images/NewDeleteIcon.gif') no-repeat !important;
   ...
}

This worked well in our test project. How does it go at your side?



Greetings,
Peter
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Scheduler
Asked by
Hrushikesh Mokashi
Top achievements
Rank 1
Answers by
Peter
Telerik team
Share this question
or