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

Deleting

2 Answers 63 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Chris
Top achievements
Rank 1
Chris asked on 29 Aug 2008, 12:28 PM
Hi,

I'm using an older version of your tools and right now I have no possible way of upgrading.  In your demos you can delete the schedules when you are in the month view, but with the version I'm using it won't let me click the 'x' on a schedule when I'm in the month view.  The other views work fine.  Did that not work in the older versions?  I just put the calendar on a test page, just with an id and runat=server and your demo code.

2 Answers, 1 is accepted

Sort by
0
Chris
Top achievements
Rank 1
answered on 29 Aug 2008, 06:55 PM
I should clarify that I'm using the binding to a generic list method of populating the calendar.

Sorry for all the posts but I have come to the conclusion that it's my styles.  I took off my style class and it made the cells their default sizes again and now I can click on the delete button.  Is there something I have to put in my styles for the delete button?  Here is my styles

<style type="text/css"> 
        .RadScheduler_Default .rsMonthView td.rsCell 
        { 
            height: 56px; 
        }
       
        .RadScheduler_Default .rsMonthView div.rsWrap  
        { 
          height:14px; 
        }
       
        .RadScheduler_Default .rsApt.VacationStyle .rsAptInner
        {
            background: red;
        }
       
        .RadScheduler_Default .rsApt.TrainingStyle .rsAptInner
        {
            background: green;
        }
    </style>
0
Accepted
Alex Gyoshev
Telerik team
answered on 01 Sep 2008, 08:44 AM
Hello Chris,

The following CSS can be used to apply styles to the delete button:
div.RadScheduler .rsAptDelete  
    /* set the background */ 
    backgroundred
 
    /* set the size */ 
    height:11px
    width:11px
 
    /* set the position */ 
    right:3px
    top:3px
 
    /* hide the text */ 
    text-indent:-99em; 
    font-size: 0; 

Kind regards,
Alex
the Telerik team

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