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
5549
Webschedule Month View prevent Dbl Click on Day to create a new appointment
posted

Hi, how can i prevent a double click on a day to create a new appointment.

i want Display the month view , but only user's with rights to create a new appointment should be able to create a new one.

how can i done this?
regards martin

Parents
  • 2895
    Suggested Answer
    posted

    Hello Martin,

    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:

            <igsch:WebDayView ID="WebDayView1" runat="server" VisibleDays="5" >

                <ClientEvents DblClick="WebDayView1_DblClick" />

            </igsch:WebDayView>

     

            function DblClick(oDayView, oEvent, element) {

                oEvent.cancel = true;

            }

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

Reply Children