Hello,
Just migrated from last 2008 version to Q1.2009 and I now get this javascript error.
I am using a variant of the sliding radpanel sample and it seems to crash now in
Just migrated from last 2008 version to Q1.2009 and I now get this javascript error.
I am using a variant of the sliding radpanel sample and it seems to crash now in
function SetUpAnimation() { |
//cleanSlider(); |
panelDomElement.style.position = "relative"; |
var expandAnimation = new Telerik.Web.UI.AnimationSettings({}); |
var collapseAnimation = new Telerik.Web.UI.AnimationSettings({}); |
slide = new Telerik.Web.UI.Slide(panelDomElement, expandAnimation, collapseAnimation, false); |
slide.initialize(); |
slide.set_direction(Telerik.Web.UI.SlideDirection.Right); |
slider.onclick = function() |
{ |
panelDomElement.parentNode.style.visibility = "visible"; |
panelDomElement.parentNode.style.display = "block"; |
if (!expanded) |
{ |
slide.expand(); |
} |
else |
{ |
slide.collapse(); |
} |
expanded = !expanded; |
return false; |
} |
} |
Thanks for urgent help.
CS