Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
150
Select multiple days
posted

Is there a way to select multiple days on the WebMonthView? Also, is there a way to disable the appointment dialog when double clicking on a day? And last question: Is it possible to have functionality of drag and drop anything on a WebMonthView day and have it save as an appointment?

Parents
No Data
Reply
  • 2895
    Verified Answer
    posted

    Hello Marilyn,

    Thank you for using our forum.

    I have investigated the case and I would like to tell that you can disable the appointment dialog by using the client event DbClick like this:

    <ClientEvents DblClick="DblClick" />

            function DblClick(oDayView, oEvent, element) {

                oEvent.cancel = true;

            }

    About your third question “Is it possible to have functionality of drag and drop anything on a WebMonthView day and have it save as an appointment?”, currently the WebShedue control doesn’t support such a functionality. But as you can see from this sample you can drag and move the appointments in the view.

    What is more, you can have multi day events and set a multi-day event banner. You can find more information about it in the following help topic:

    http://help.infragistics.com/Doc/ASPNET/Current/CLR4.0?page=WebScheduleGenericDataProvider_About_Multi_Day_Event_Banner.html

    If you have further questions, don’t hesitate to contact me.

     

Children
No Data