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

clone error . No target element specified

3 Answers 95 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Pooja
Top achievements
Rank 1
Pooja asked on 08 Feb 2012, 02:07 AM
What could be the meaning of this error. "Clone error. No Target element specified". Comes when I bind data using webservice binding, the error comes in Month View whenever more option is displayed

3 Answers, 1 is accepted

Sort by
0
Pooja
Top achievements
Rank 1
answered on 08 Feb 2012, 06:05 AM
Got the problem resolved. Issue was on ClientAppointmentCreated event I was binding the appointment to tooltipmanager
  var element = args.get_appointment().get_element();
    var tooltip = tooltipManager.createToolTip(element);

In Month View when for a day more link comes this "element" becomes null for hidden appointments, so the second line was throwing error.
0
Steve Rothschild
Top achievements
Rank 1
answered on 20 Apr 2015, 07:32 AM
What did you do to resolve this.
0
Doug
Top achievements
Rank 1
answered on 23 May 2017, 04:14 PM
here is all I did
if (!(apt.get_element() === null)) tooltipManager.createToolTip(apt.get_element());
Tags
Scheduler
Asked by
Pooja
Top achievements
Rank 1
Answers by
Pooja
Top achievements
Rank 1
Steve Rothschild
Top achievements
Rank 1
Doug
Top achievements
Rank 1
Share this question
or