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

AgendaView

1 Answer 40 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Kjell
Top achievements
Rank 1
Iron
Kjell asked on 30 Jul 2016, 12:38 PM
How disable click in date column in Agenda View (attached image)?
And can I add custome style/template in the date column in Agenda View?

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 03 Aug 2016, 03:46 PM
Hello Kjell,

You can prevent the click on the date as shown in the code snippet below:
function pageLoad() {
    $telerik.$(".rsDateHeader").click(function (e) {
        e.stopPropagation();
    });
}

As for using templates for the Date column, this is not supported, however you can change the default styles applied to the column, by inspecting the elements in the browser developer tools and using the corresponding selectors set the desired CSS rules, for example:
html .RadScheduler .rsAgendaTable th {
    background-color: lightblue;
}


Regards,
Ivan Danchev
Telerik by Progress
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
Scheduler
Asked by
Kjell
Top achievements
Rank 1
Iron
Answers by
Ivan Danchev
Telerik team
Share this question
or