Below code is placed in page designer (page level).
<
telerik:RadScriptBlock runat="server" ID="RadScriptBlock2">
function
openFormReserve() {
var dock = $find("<%= RadDock3.ClientID %>");
// Center the RadDock on the screen
var viewPort = $telerik.getViewPortSize();
var xPos = Math.round((viewPort.width - parseInt(dock.get_width())) / 2);
var yPos = Math.round((viewPort.height - parseInt(dock.get_height())) / 2);
$telerik.setLocation(dock.get_element(), { x: xPos, y: yPos });
dock.set_closed(
false);
//var descriptionTextBox = $get('<%= ComboFacility.ClientID %>');
Sys.Application.remove_load(openFormReserve);
</telerik:RadScriptBlock>
EnableDragAndDropBetweenNodes=true)
!
Do you have an idea of what could cause that problem?
<
telerik:RadTabStrip ID="RadTabStrip1" runat="server" Skin="Office2010Silver" MultiPageID="MulProfDesPage"
SelectedIndex="0"
ShowBaseLine="True">
<Tabs>
<telerik:RadTab Text="Create Profile" Selected="True">
</telerik:RadTab>
<telerik:RadTab Text="Edit Profile">
</telerik:RadTab>
<telerik:RadTab Text="Inherit Profile">
</telerik:RadTab>
</Tabs>
</telerik:RadTabStrip>
It shows error page - here I have attach......
How to clear this?