Hi, im having an issue with the RadWindow. After being closed, on a postback the window reappears and cannot be closed again. I'm using Telerik ASP.NET 11.1.426.0 Q1 2011
Here's some code i have:
ASPX
This is the JS associated:
Thanks,
Diego.
Here's some code i have:
ASPX
<
telerik:RadWindow
ID
=
"RadWindowPreindexarCarpeta"
runat
=
"server"
Modal
=
"True"
Behaviors
=
"Close, Move"
VisibleStatusbar
=
"False"
Width
=
"425px"
Height
=
"400px"
Title
=
"Editar tipo predefinido"
OnClientShow
=
"Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta.onShow"
OnClientClose
=
"Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta.onClose"
EnableViewState
=
"false"
>
<
ContentTemplate
>
<
AxDMP:PreindexarCarpetaTag
ID
=
"PreindexarCarpeta"
runat
=
"server"
/>
</
ContentTemplate
>
</
telerik:RadWindow
>
This is the JS associated:
Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpeta = {
show:
function
(carpetaId) {
var
activeTooltip = Telerik.Web.UI.RadToolTip.getCurrent();
if
(activeTooltip)
activeTooltip.hide();
$find(Garino_Axentria_DMP_VerPreindexarCarpetaWindow).show();
$find(Garino_Axentria_DMP_Funciones_Indexacion_PreindexarCarpetaAjaxPanel).ajaxRequest(
'carpetaId:'
+ carpetaId);
},
close:
function
() {
$find(Garino_Axentria_DMP_VerPreindexarCarpetaWindow).close();
},
refresh:
function
() {
var
explorer = $find(Garino_Axentria_DMP_BusquedaPorCarpeta_RadFileExplorerPorCarpeta);
if
(explorer) { explorer.refresh(); }
else
{ $find(Garino_Axentria_DMP_AjaxManagerId).ajaxRequest(); }
},
onShow:
function
() {
},
onClose:
function
() {
Page_IsValid =
true
;
Page_Validators = [];
}
}
Thanks,
Diego.