This example demonstrates how to use the control's client-side funstionality to specify a pop-up window's position and content.
Use the following client-side methods:
- SetContentHtml - specifies the window's content.
- SetHeaderText - specifies the text of the window's header.
- ShowAtPos - specifies the window's position.
function ShowPopup(headerText, contentText, positionX, positionY) {
popup.SetHeaderText(headerText);
popup.SetContentHtml(contentText);
popup.ShowAtPos(positionX, positionY);
}
- Default.aspx (VB: Default.aspx)
(you will be redirected to DevExpress.com to submit your response)