I was looking into the
atlas:DragOverlayExtender
control today and puzzling over why whenever I drag a panel around the
browser the the panel is always redrawn at the starting position when I
let go of the mouse. Try adding the following code as an ATLAS ASP.NET
page, running the project and dragging the panel around...
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
Untitled Page
It seems that ATLAS will only enable you to drop the panel within a
browser area depicted by the amount of HTML rendered. In the above
case, the page has very little content between the body tags (most of
the page is whitespace), so the panel cannot be dropped far from the
start location. Adding a style to the body tag and setting the height
to 100% seems to fix the problem...