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

Object does not support this property or method: When attempting to get the Appointment Description in IE 7/8 only

2 Answers 44 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
Kevon
Top achievements
Rank 1
Kevon asked on 08 Nov 2010, 06:32 PM

<

 

 

script type="text/javascript" src="../Scripts/corCalendarEvent.js"></script>
<

 

 

script type="text/javascript">

 

 

 

 

 

 

 

function OpenCalendarSectionWin(sender, eventArgs) {  

 

var oWnd = $find("<%=EventWindow.ClientID %>");

 

oWnd.setUrl(

 

"HttpContext.Current.Request.Url.ToString()");

 

 

 

 

 

 

var apt = eventArgs.get_appointment();

 

subject = apt.get_subject();

description = apt.get_description();

start = apt.get_start();

end = apt.get_end();

start = dateFormat(start,

 

"dddd, mmmm, dS, yyyy, h:MM:ss TT");

 

 

 

end = dateFormat(end,

 

"dddd, mmmm, dS, yyyy, h:MM:ss TT");

 

 

 

document.getElementById(

 

"EventText").innerHTML = subject;

 

 

 

document.getElementById(

 

"EventDescription").innerHTML = description;

 

 

 

document.getElementById(

 

"EventStart").innerHTML = start.toString() + " CST";

 

 

 

document.getElementById(

 

"EventEnd").innerHTML = end.toString() + " CST";

 

 

 

oWnd.show();

}

 

 

</

 

 

script>

//Only in IE "7" do I get the following error: Object doesn't support this property or method
Please advise procedure

 

 

 

 

 

2 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 11 Nov 2010, 11:03 AM
Hi Kevon,

That's unusual. Do you have a live url or a simple working demo of the issue which you can send to us via a support ticket?

Greetings,
Peter
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
0
Kevon
Top achievements
Rank 1
answered on 11 Nov 2010, 03:45 PM
I currently have it setup in a dev environment but ill make it available via public facing url later today with sample files. Thanks.
Tags
Scheduler
Asked by
Kevon
Top achievements
Rank 1
Answers by
Peter
Telerik team
Kevon
Top achievements
Rank 1
Share this question
or