Questions tagged [modalpopupextender]

The AJAX Control Toolkit for ASP.NET includes the remarkable ModalPopupExtender feature.

Automated test does not trigger Selenium Webdriver modal popup

Currently, I am developing automation scripts using Selenium Webdriver in Java to test an application designed for Point of Sale systems. Upon the initial launch of the application, a modal dialog box is displayed for the user to make a selection. This mo ...

Unexpected behavior observed with Gridview paging within ModalPopupExtender

Having an issue with my modal pop-up extender that displays a grid view. When I click a button, the grid is supposed to populate following this code: protected void btnViewRecipients_Click(object sender, EventArgs e) { ModalPopupExtender1.Show(); ...

Trigger a distinct pop-up window by clicking on either of two separate buttons

I have two buttons called "save" and "update". I want to use a single pop-up window for both buttons. When the pop-up window is opened by clicking the "save" button, it should be directed to the OnClick_save() button event upon closing. Similarly, when the ...

Does the modal popup extender change the screen size?

I need help understanding if this behavior is normal. I have a well-designed asp.net site with all content fitting on one page without the need for scrolling. However, when a specific button is clicked to show additional content using modalpopupextender, t ...

What is the best way to conceal a ModalPopupExtender that is integrated into an ASCX user control without triggering a postback, utilizing JavaScript?

I am currently working on an Asp.net application and have encountered an issue with the ModalPopupExtender embedded within an ASCX user control. I am trying to set up a cancel button that will hide the popup without triggering a post back when clicked. He ...

Tips on accessing the value of a dynamic field in an ASP ModalPopup

I am having trouble with my modalpopup extender. When the user clicks an 'Add' button, a dynamic textbox is created within the popup. However, I am struggling to get a reference to this textbox in the codebehind. Adding a 'textchanged' ...