modalpopupextender

Modal popup shown at the bottom of the page

Hi all, I'm using asp.net ajax, with modal popup extender in a web page. The popup appears fine in Firefox and Google Chrome, but it shown at the bottom of the page in IE8. I tried to control the appearance through JavaScript: var Image1_ModalPopupExtender = $find("Image1_ModalPopupExtender"); Image1_ModalPopupExtender.set_X(100); Imag...

Calling one ModalPopupExtender from two different buttons?

I have a panel that is hooked up to a ModalPopupExtender but it can be called two different ways, by either adding a user (one button click) or editing a user (a totally different button click). The controls on the panel never change, but they are all blank when adding, or they are binded to the data of the particular user being edited....

modal popup extender as progress bar

Hi, I have a modal popup extender in which i have a progress bar. When i click a button ...this popup should be displayed to the user. I have done this though button.attributes.add().[ this is without postback] But ...popup extender can blur the base page only after the postback. Issue is currently i am able to see the progress bar......

Listbox appears through modal popup extender

I have a base page in which i have a listbox. The base page is also having a modal popup extender. When the modal popup extender appears over listbox, the listbox appears through modal poup. That is, only for listbox, the popup extender becomes transparent. What shud I do for this? ...

ModalPopupExtender strange behavior

Hello. I'm developing an ASP.NET application with C# and Visual Studio 2008 SP1. I'm using WebForms. I have an ASPX page with two UpdatePanels, one on the left that holds a TreeView and other on the right where I load dynamically user controls. On the left panel I also have buttons to load user controls on the right. I have a ModalPop...

Microsoft JScript runtime error: Sys.InvalidOperationException: Two components with the same id.

I'm working in ASP .NET dynamic data. In one of my edit controls I wanted to allow the user to add records from a related table to the current page. (Literally, if you are on the orders page, you would be allowed to add a new customer to the system on this page as well, and then associate it with that order). So, I have a DetailsView set...

ASP.NET GridView needs mouse movement to be shown

Hello! I have ModalPopupExtender that contains a UserControl that basically consists of a GridView and a HiddenField, both on an UpdatePanel. The HiddenField stores the number of the selected row. This way I avoid postbacks when selecting rows. The ModalPopupExtender contains also some buttons that I want to disable when none of the Gri...

Edit a gridview inside a modalpopup without closing popup

I've got a modal popup (using ModalPopupExtender) working in a kind of master/detail view for a grid. When you click a button on one grid, it displays a popup window containing another grid of information, based on the row clicked in the first grid. This works well... I've enabled editing in the grid that is popped up. When you click ed...

Does modal popup extender need update panel ?

Hi, Is it necessary that we shud use modal popup extender inside an update panel ? ...

asp.net ModalPopupExtender : need to show scroll bar when overflow

I display a gridview in a ModalPopupExtender. When the screen resolution is to small, the pop-up is to big to all be displayed on the page. I just want to add scroll bar to the pop-up when this happen. I know it's probably some CSS, but all I tried did not work. here some base css .modalTextBoxBackground { background-color:Gray; ...

Modal popup extender rendering

Hi, I have a modal popup extender in my page. But after rendering if I look at "view source"(right click on browser and see), I' m not able to see the html part equivalent to the modal popup extender. Since that I'm not able to access the elements in popup using getElementById()...in client side. Please help :( ...

Use ModalPopupExtender without having to set TargetControlID?

I'd like to use a modalpopupextender in my asp.net page to show a sub form. But it only has to show on specific conditions. Those conditions are determined in a piece of javascript code. So, most importantly, the modal popup doesn't have to show on a button click. However, if I leave the property TargetControlID empty I get the followin...

How to prevent displaying modalpopup on click of browser back button

Hi, I have an application made by using asp.net,C#.In that application there is a page having gridview displaying results.The grid view has a template column containing hyperlink. On click of the hyperlink there is modal popup opened using code behind. The modal popup is closed successfully by closing it.Now I redirect to some other pag...

ModalPopupExtender and validation

How do I setup the ModalPopupExtender to not show when the validation on the page fails? I have a RequiredFieldValidator on a textbox. On Submit, I would like to show the ModalPopupExtender ONLY if validation is successful. ...

Why does a ModalPopupExtender fail when using SSL?

I have created a modal popup using the ModalPopupExtender in Microsoft's AJAX 1.0 for .NET 2.0. It works great when the page doesn't isn't being accessed through SSL (http://) however the link to close the popup fails to fire if accessing the page through https://. Is the ModalPopupExtender at blame? Is it a "Feature" of SSL to block ...

AJAX modalpopupextender pressing enter when cancel is focused doesn't trigger cancel

Been using the Ajax modalpopupextender. I used a script to set focus on the cancel button when it gets showed on the page but when I press enter (expecting that cancel would've been triggered since it was focused) it went ahead and triggered the event for the OK button (which, unfortunately was a delete event). I've tried using various...

How to make 5 links to open the same modal popup?

I have 5 links that are on the same form but I would like them all to reference the same AJAX modal popup extender. I am basically showing a panel with the same view layout with just different data depending on which link is pressed, showing different match scores from games. The only way I can get it to work is have 5 panels with uniqu...

How to close Modal popup Extender from Server side

How to close Modal Popup extender from server side code on click of close link in popup. ...

Ajax modal popup inside update panel causes flickering

Hi I have an ajax modal popup, which is shown on click of a button in base page. And on click of a button in popup, Base page should be updated. Everything works perfectly fine. But the popup flickers on click of the button in base page. Please help me to avoid this flickering effect. ...

DropDownList Value not changing with UpdatePanel and ModalPopupExtender

Greetings, I have an asp.net webpage with an modalpopupextender inside of an updatepanel. When I click Ok on the popup, I can get the textbox values from the popup just fine, but the DropDownLists have the old/default value, not the new value I have selected for them. All the controls on the popup are set to enableviewstate = true, and...