This question is locked. New answers and comments are not allowed.
I want to have this window hidden on page load, and be opened when a user clicks on a link. I am having no problem getting the window to open when the link is clicked, but in firefox, and IE9, despite my visible(false), the window is showing on page load. How can i force this window to be hidden on page load?
<%Html.Telerik().Window().Name("ProfileFields") _.Title("Profile Fields") _.Draggable(True) _.Resizable(Function(resizable) resizable.Enabled(True).MinWidth(300).MinHeight(300)) _.Scrollable(True) _.Modal(False) _.Buttons(Function(b) b.Close) _.Content(Function(i)%>Content
<%EndFunction) _.HtmlAttributes(NewWith{.Style ="margin-left:100px;margin-top:-300px;"}) _.Width(650) _.Visible(False) _.Render()%>