Hello there,
I have a SharePoint 2013 environment with a site collection running in 2010 mode.
(My project is working in 2010 and 2013 as 2013 mode, I tested it in the same WebApplication and the same AppPool.)
I have a RadPane / RadTreeView / ContextMenu.
When I cause a PostBack by moving the splitter, expanding a pane, opening the context menu or whatever belonging to my custom user control using RadControls a postback is caused, the server is successfully proceeding the ajax request but on callback I get a recursive call of WebForm_InitCallback (_layouts/1031/init.debug.js) and the RadControls disapear:
The exception is thrown at the position marked with ****. The error in IE10 (document mode 9) is "Not enough stack space". In IE10 with document mode IE8 the error is "This object doesn't support this property or method."
I'm running Telerik.Web.Design and Telerik.Web.UI version 2013.1.417.35.
Please help me, I'm stuck :(
I have a SharePoint 2013 environment with a site collection running in 2010 mode.
(My project is working in 2010 and 2013 as 2013 mode, I tested it in the same WebApplication and the same AppPool.)
I have a RadPane / RadTreeView / ContextMenu.
When I cause a PostBack by moving the splitter, expanding a pane, opening the context menu or whatever belonging to my custom user control using RadControls a postback is caused, the server is successfully proceeding the ajax request but on callback I get a recursive call of WebForm_InitCallback (_layouts/1031/init.debug.js) and the RadControls disapear:
function
DeferWebFormInitCallback()
{ULSA13:;
if
(
typeof
(WebForm_InitCallback)==
'function'
)
window[
'_WebForm_InitCallback'
]=window[
'WebForm_InitCallback'
];
window[
'WebForm_InitCallback'
]=
function
()
{ULSA13:;
if
(firstCalled)
{
firstCalled=
false
;
_callbackinitdelayed=
true
;
_spBodyOnLoadFunctionNames.push(
'WebForm_InitCallback'
);
}
else
{
_callbackinitdelayed=
false
;
if
(
typeof
(window._WebForm_InitCallback)==
'function'
)
window._WebForm_InitCallback();****
}
}
if
(
typeof
(WebForm_DoCallback)==
'function'
)
window[
'_WebForm_DoCallback'
]=window[
'WebForm_DoCallback'
];
window[
'WebForm_DoCallback'
]=
function
(eventTarget, eventArgument, eventCallback, context, errorCallback, useAsync)
{ULSA13:;
if
(_callbackinitdelayed)
{
_callbackinitdelayed=
false
;
if
(_spBodyOnLoadFunctionNames !=
null
)
{
var
count=_spBodyOnLoadFunctionNames.length;
for
(
var
i=0; i<count; i++)
{
if
(_spBodyOnLoadFunctionNames[i]==
"WebForm_InitCallback"
)
{
_spBodyOnLoadFunctionNames.splice(i,1);
break
;
}
}
}
if
(
typeof
(window._WebForm_InitCallback)==
'function'
)
window._WebForm_InitCallback();
}
window._WebForm_DoCallback(eventTarget, eventArgument, eventCallback, context, errorCallback, useAsync);
}
}
The exception is thrown at the position marked with ****. The error in IE10 (document mode 9) is "Not enough stack space". In IE10 with document mode IE8 the error is "This object doesn't support this property or method."
I'm running Telerik.Web.Design and Telerik.Web.UI version 2013.1.417.35.
Please help me, I'm stuck :(