Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Scheduler and Reminder > CellClick Event Issue On MonthView

Answered CellClick Event Issue On MonthView

Feed from this thread
  • Posted on Mar 16, 2012 (permalink)

    Reporting what I think might be a bug.
    When using a RadScheduler (2011 Q3) in MonthView, CellClick event of RadScheduler does not fire when a cell (corresponding to a day in monthview) is clicked. It fires only when the smaller day header is clicked.
    One can overcome this issue by using RadScheduler MouseClick event like this:
    private void radScheduler1_MouseClick(object sender, MouseEventArgs e)
    {
       if (radScheduler1.FocusedElement is MonthCellElement)
       {
           //Do Stuff
       }
    }

    Reply

  • Answer Ivan Todorov Ivan Todorov admin's avatar

    Posted on Mar 21, 2012 (permalink)

    Hello Sahand,

    Thank you for writing.

    I confirm that this is an issue in RadScheduler. I have logged it to PITS and we will address it in a future release. Here you can find the PITS item. For the time being you can also use the CellElementMouseDown event as an alternative:

    void radScheduler1_CellElementMouseDown(object sender, MouseEventArgs e)
    {
        // (sender as MonthCellElement)
    }

    Your Telerik points have been updated.

    Regards,
    Ivan Todorov
    the Telerik team
    RadControls for WinForms Q1'12 release is now live! Check out what's new or download a free trial >>

    Reply

  • Say Hello to Telerik's PivotGrid for ASP.NET AJAX, Silverlight, WPF and WinForms. Now packed with OLAP support.

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Scheduler and Reminder > CellClick Event Issue On MonthView
Related resources for "CellClick Event Issue On MonthView"

[ Features | Demos | Documentation | Knowledge Base | Telerik TV | Code Library | Step-by-step Tutorial | Blogs | Self-Paced Trainer ]