2017-01-25 158 views
0

我收到以下錯誤Infragistics的:對象不能轉換爲類型「Sys.Component」

JavaScript runtime error: Sys.ArgumentTypeException: Object of type 'Infragistics.Web.UI.SlideFadeAnimation' cannot be converted to type 'Sys.Component'. Parameter name: component

錯誤源的eval代碼的Infragistics.Web.UI。 CalendarListAnimationStoppedEventArgs事件。

function Sys$_Application$removeComponent(component) { 
    /// <summary locid="M:J#Sys.Application.removeComponent" /> 
    /// <param name="component" type="Sys.Component"></param> 
    var e = Function._validateParams(arguments, [ 
     {name: "component", type: Sys.Component} 
    ]); 
    if (e) throw e; 
    var id = component.get_id(); 
    if (id) delete this._components[id]; 
} 

嘗試:我搜索過Infragistics.Web.UI.SlideFadeAnimation在整個解決方案,並有它的一個參考。

任何建議來解決這個問題非常感謝。謝謝。

回答

1

我假設你正在使用WebMonthCalendar控制,並且在日曆動畫停止時調用該問題。是否有可能共享什麼是您的代碼實現,以及在應用程序生命週期的哪個點顯示錯誤。

瀏覽器,確切的產品版本和一般的應用程序配置描述等信息也會有所幫助。

+1

我將用我的代碼編輯問題並添加其他信息。感謝您的迴應。 – Prosper

+0

好的,謝謝 –

相關問題