I'm trying to set the height of an appointment equal to the height of the cell in month view.
Basically, I'm only going to have one appointment per day on a small calendar, so I want that appointment to cover the entire cell. I've set the initial height of each appointment div (see below) so the size of the cell is not enlarged when the scheduler is loaded. Is there a way to overwrite this size of an individual appointment by using the AppointmentDataBound event and a CSS Class?
| .RadScheduler_Default .rsMonthView div.rsWrap |
| { |
| height: 7px; |
| } |
| .RadScheduler_Default .rsMonthView td.rsCell |
| { |
| width:25px; |
| height:28px !important; |
| } |
I've already looked at the following articles but I did not find the answer there.
How to tweak the appearance of RadScheduler's cells
How to set the appointment's height to accomodate the entire subject's text in Month View