I am trouble with the October Update of the RadWindow. It was working fine with the Jun. July version. The modal popup behaves strange the second time I try to maximize it. It locks up and basically will not let me do anything because it almost behaves like there is some other modal window is blocking it. Here's how am I using it
<script type="text/javascript">
function onClientCallBack(returnValue)
{
var oValue = returnValue.argument;
var hdnValue=$get('<%=hdnValue.ClientID %>')
if (oValue == "1")
{
hdnValue.value=(new Date()).getTime();
__doPostBack( '<%=updGoals.ClientID %>', '');
return true;
}
else
{
return false;
}
}
function openRadWindow(GID)
{
var oWnd = $find("<%=radGoal.ClientID%>");
if(GID== '')
{
oWnd.setUrl("AddEditGoal.aspx");
}
else
{
oWnd.setUrl("AddEditGoal.aspx?gid="+GID);
}
oWnd.show();
}
</script>
<table>
<tr><td>
<!-- Some other stuff -->
ListView etc.
<!-- -->
<telerik:RadWindow ID="radGoal" runat="server" Behaviors="Resize,Maximize,Move,Close"Modal="true" Title="AddGoal" VisibleTitlebar="true" VisibleStatusbar="false"Skin="Vista" ReloadOnShow="false" OnClientClose="onClientCallBack" OnClientShow="onclientShow"IconUrl="~/images/previstar.GIF"></telerik:RadWindow>
</td></tr>
</table>
Please let me know what is the difference between the July Service Pack vs. the October one. It only happens when window is open in a Modal State.
Thanks
Himadri