This question is locked. New answers and comments are not allowed.
The following window popup correctly but when I call $("#popupService").hide(); the window disappear but the parent windows is still disabled. If I close the window using the "X" button.everything works correctly. $(#popupService").close() is not defined.
@{ Html.Telerik()
.Window()
.Name("popupService")
.Title("Update Service Details")
.Content(....)
.Width(400)
.Height(500)
.Draggable(true)
.Modal(true)
.Visible(false)
.Render();
}
@{ Html.Telerik()
.Window()
.Name("popupService")
.Title("Update Service Details")
.Content(....)
.Width(400)
.Height(500)
.Draggable(true)
.Modal(true)
.Visible(false)
.Render();
}