4

Can the position of the Ajax modalpopupextender be set either to an absolute or relative position on the page?

The default puts it at page center and I haven't found a way to override this.

I would like to position the popup close to the control that triggers it.

Luke Girvin
  • 13,221
  • 9
  • 64
  • 84
Lill Lansey
  • 4,775
  • 13
  • 55
  • 77

1 Answers1

14

There are X and Y properties you can set with the latest version:

<AjaxToolkit:ModalPopupExtender ...otherproperties... 
     X="100" Y="300">
</AjaxToolkit:ModalPopupExtender>
Lance Harper
  • 2,216
  • 14
  • 11