I want to open a panel in the top left corner of my page but then be able to drag it around the page. It will open in the top left corner but then I cannot drag the panel. It always goes back to the starting position. If I remove !important then it will allow the drag feature to work but the panel is then centered on the page when it opens.
There is a conflict that I cannot resolve. Here is my code:
Thanks,
Dave
There is a conflict that I cannot resolve. Here is my code:
Thanks,
Dave
Code:
<asp:Panel ID="pnlPopUp" runat="server" CssClass="SearchForm" Style="left: 1% !important; top: 1% !important; display: none;" ScrollBars="Auto">
<act:ModalPopupExtender ID="ModalPopupExtender1" runat="server" BackgroundCssClass="ModalPopupBackground"
CancelControlID="btnClose" PopupControlID="pnlPopUp" TargetControlID="lnkFindTPID"
PopupDragHandleControlID="pnlPopUp" Drag="true" >
</act:ModalPopupExtender>
Comment