I've got a .net ChangePassword control inside a DevExpress ASPxPopupControl. I'd like to automatically close the Popup window after the password has been successfully changed - however, I can't see any client-side controls that allow me to hook a popup.Hide() to the Continue button. Is such a thing possible?

link|improve this question

feedback

1 Answer

If the Continue button is an AspxButton, use the below Code. You need to make sure the ClientInstanceName of the PopupControl is set to "popup"

 <ClientSideEvents Click="function(s, e){
    popup.Hide();
 }" />
link|improve this answer
It's not an ASPxButton unfortunately, it's the standard button that appears on the ChangePassword control - not one I have added myself or (it seems) have any control over. – Kenny Anderson Jul 14 '11 at 12:38
does this help? forums.asp.net/t/1330539.aspx/1 – Akhil Jul 14 '11 at 16:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.