Hi,
We converted a project containing a RadScheduler from VB to C# and now we're getting a javascript error that indicates that the Recurrence checkbox is null. The error is occurring on line 12734 of the javascript file. The line where it breaks is
We converted a project containing a RadScheduler from VB to C# and now we're getting a javascript error that indicates that the Recurrence checkbox is null. The error is occurring on line 12734 of the javascript file. The line where it breaks is
if(j[0].checked){h.show(); j[0] is null or not an object. I can find no functional difference between the two versions.Here is the code from RecurrenceEditor.js: _initializeRecurrenceCheckbox: function()
{
var id = this._baseId;
var recurrencePanel = $($get(id + "_RecurrencePanel"));
var recurrentAppointment = $($get(id + "_RecurrentAppointment"));
if (recurrentAppointment[0].checked)
{
recurrencePanel.show();
}
If you have any insight on what could cause this error we would greatly appreciate it. Thank you