Hi Daniel,
It seems like the element you click is an anchor that points to a certain part of the page and thus what you observe is the default browser behavior when an anchor is clicked - to scroll the page so that its target is at the top. This is usually avoided by setting the
href attribute of the anchor to
javascript:void(0); so that this default action is cancelled. Alternatively you can attach an onclick handler for the anchor:
As a third option I can suggest you call restore() , center() and maximize() methods of this RadWindow when the anchor is clicked.
Greetings,
Marin Bratanov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their
blog feed now.