Hi All,
I have a code in code behind where i am calling RadConfirm popup screen:
RadWindowManager1.RadConfirm("Are you sure you want to Delete interest record(s) and ready to proceed?", "confirmCallbackFn", 300, 180, null, "Confirmation Message");
<script type="text/javascript">
function confirmCallbackFn(arg) {
if (arg) //the user clicked OK
{
__doPostBack("<%=OkBtn.UniqueID %>", "");
}
else {
__doPostBack("<%=CancelBtn.UniqueID %>", "");
}
}
</script>
when i scroll all the way down and delete the record on the grid and click on link button, popup screen appear but all the way on top instead of the center when i scroll down. When screen is located up it is fine but when i scroll down to lets say delete last record on the screen popup window remains on the top.
Please help.
Thanks so much.