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

Disabling More link in Month view

1 Answer 68 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Sreega
Top achievements
Rank 1
Sreega asked on 06 Oct 2010, 05:39 AM
Hi

I don't want see the appointment details in the month view and I don't want to see the day view if I am clicking the More Link for appointments in the month view of the ASP .Net Ajax scheduler control. I have set the property MonthView.VisibleAppointmentsPerDay = 0.  After that, appointment details are not visible in the month view, but still the more link is visible. Is there any way to hide the More link in the month view ?

1 Answer, 1 is accepted

Sort by
0
Nikolay Tsenkov
Telerik team
answered on 11 Oct 2010, 11:20 AM
Hi Sreega,

You disable it's default behavior like that:
// handler to the NavigationCommand server event of RadScheduler
protected void RadScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e)
{
    if (e.Command == SchedulerNavigationCommand.SwitchToSelectedDay)
    {
        e.Cancel = true;
    }
}

If you want to make it invisible, you can hide it with the following style:
.rsShowMore
{
    visibility: hidden;
}

Hope this is helpful for you!


Regards,
Nikolay Tsenkov
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
Tags
Scheduler
Asked by
Sreega
Top achievements
Rank 1
Answers by
Nikolay Tsenkov
Telerik team
Share this question
or