How To Prevent Duplicate Event Allocation In Wdcalendar Jquery Plugin

How To Prevent Duplicate Event Allocation In Wdcalendar Jquery Plugin?

Problem is as follows:

Suppose I have created event1 for the day 18th April 2014 from 1:00 to 2:30, now I clicked on header of that day column to book for whole day then it gets booked but it should not be, because event1 has been already scheduled so how can we validate for the same ???

try this

$("#showreflashbtn").click(function(e){

            $("#gridcontainer").empty();


            $("#gridcontainer").reload();


            $('.filterevents').removeClass('fcurrent');





        });

Thanks for reply, I resolved it from back end response

hey friend may i know how u solve this , because , still im getting the duplicate entries on refresh , previous , back button click

I made changes in my back end php file datafeed.php, in this two functions named addCalendar, addCalendarDetails here I checked for existing event and return false if found with appropreate message.