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

How do I remove single day link from the day header on MonthView?

2 Answers 27 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Neil
Top achievements
Rank 1
Neil asked on 10 Nov 2011, 10:00 PM
Currently, the date is a Link, and I don't want it to be.  How do I disable that?

2 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 11 Nov 2011, 05:50 AM
Hello Neil,

You can try the following CSS

CSS:
<style type="text/css">
 .rsToday,.rsDateHeader
  {
   cursor: default !important;
  }
</style>

Thanks,
Princy.
0
Peter
Telerik team
answered on 11 Nov 2011, 05:31 PM
Hello,


You can also try the following jQuery code:

function pageLoad() {

           $telerik.$(".rsDateHeader").each(function(i) {

               $telerik.$(this).bind("click", function(e) {

                   $telerik.cancelRawEvent(e); 

               });

           });

       }

 



All the best,
Peter
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
Tags
Scheduler
Asked by
Neil
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Peter
Telerik team
Share this question
or