modalpopupextender

ModalPopupExtender and IE 6

Hello, I am using the ASP.NET AJAX Control Toolkit. Within this toolkit, I am only utilizing the ModalPopupExtender (which requires a ScriptManager). This ModalPopupExtender is used on a very basic page. In fact, the page is just a login screen. If the user does not enter their login credentials, we want to show a dialog. The ModalPopu...

Popup extender "frozen" on code-behind exception.

Hi, In a C#/ASP.NET project, we're using an ajax modalpopupextender to display a "Processing..." message to the users. We're displaying it using a Javascript call in the code of the ASP.NET page. Then, in the code behind, we're doing some database operation, and hide again the popup using "popup.hide();" The problem is that when an exc...

ModalPopupExtender won't render in front of everything in IE7/IE8 Compatibility mode

I have a ModalPopupExtender from the AjaxControlToolkit that is working properly in Firefox, Chrome and IE8, but when I run it in IE8 Compatibility mode, it pops up behind the content of my page, rather than on top. The popup is in a user control that's rendered by the Masterpage. What I think is happening is it's popping up in front of...

Ajaxtool kit popup in usercontrol

hi i have page in which i used the usercontrol in user control i use a ajaxtoll kit popup window to load a div in the user control it is working as expected when the pase ispostback is false that is for the first time when the page loads. but after the post back when i invoked the popup it is giving me some unspecified javascript error....

ModalPopupExtender and validation problems

The problem I am facing is that when there is validation on a page and I am trying to display a model pop-up, the pop-up is not getting displayed. And by using fire-bug I have noticed that an error is being thrown. The button that is used to display the pop-up has cause validation set to false so I am stuck as to what is causing the err...

Problem with ajax modal popup extender

Hi Friends!! I have a Button which is having modalpopupextender which is working absolutely fine no problem at all, but before the modalpopup appears i want to validated text box control if it is not valid then modalpopup should not appear other wise it should work as usual.. does anybody having idea. ...

Modal Popup not refreshing Parent Page

I know this will seem vague and I will work on getting some code posted but wanted to get some initial feedback to see if anyone else has experienced this problem. I have a page with a listbox and a button. When I click the button a modal popup displays a checkbox list that allows the user to select options. At the bottom of the popup I ...

modalpopupextender and commas appearing in my textbox asp.net

Some weird stuff is happening, I am converting an application that used to use javascript to open another web page in a tiny window for data input to use a ModalPopupExtender. It seems to work fine, but in the OK event, when I do txtData.Text (the textbox in my modal popup), it comes back with a comma before the data, so if you type "Ra...

Update panel doesn't seem to update

I have a button inside of a gridview's template field. Onclick i want to the button to open up a modal popup while force updating the updatepanel and formview inside the modal popup because the formview's datasource depends on a hidden field in which i am setting after click also. This is what i have so far. protected void bttnEdit_Cli...

modalpopupextender page load fails

Hi, I had a situation to call page load method when an ascx control loaded through modalpopupextender's popupcontrolid. In that ascx control's page load method i have assigned values to the textboxes. So when an ascx control popped up it will show the textboxes along with values. Please anyone help me. Thanks in advance. ...

Another modal popup extender question

I am trying to get a modal popup to work, it needs to be triggered in the Code behind. <asp:Button ID="btnModalPopUp" runat="server" Text="Button" Style="display: none" /> <asp:Panel ID="pnlModalPopup" runat="server" CssClass="modalPopup" Style="display: none" Width="233px"> <div id="Div1" runat="server" cssclass="title"> ...

why ajax modelpopup hides behind silverlight object?

I have silverlight plugin on my page and some functionality to show panel as popup with the help of Ajax ModalPopup extender, But whenever show modal pop up it hides behind the silverlight plugin i.e. plugin is always on top? any suggestion to solve this problem? ...

[ASP.net AJAX] Modal popup extender is rounded locally but not on the server

ASP.net ajax 2.0 I've got a modalpopup extender that looks like this: The actual modal popup is wrapped around a rounded corner extender to give it the nice curved look. Here is a simple snippet of code: <ajaxToolkit:ModalPopupExtender ID="ModalPopupExtender1" runat="server" CancelControlID="btnCancel" OkControlID="btnOk" TargetCon...

How to incorporate modal popup in .net?

I have an aspx page where there is a hyperlink control. On click of the hyperlink, I want to open another aspx page as a popup.Presently I am doing this by using javascript popup. <script language="javascript" type="text/javascript"> function openpopup() { testwindow = window.open('ViewPlanner.aspx', "mywindow", "menubar=0,toolbar=0...

Problem with scrollbar and panel using Modal Popup Extender Drag

Hello! I am with a problem with a ModalPopupExtender control (.NET, AjaxToolKit) when I have a scrollbar in a panel and set the drag option: I click on scrollbar and the panel start drag and I can't stop drag! Anyone can help? Tks! ...

show modal popup on selected item from dropdownlist

i have dropdownlist containing some items ,,i want to show modal popup whena particular itm is selected from the list ...

show modal popup from code behind

i have a dropdownlist in codebehind,i have this function protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e) { /////// } now i want to show modal popup when a particular text is selected from the dropdownlist from this function ...

ASP.NET GridView pagination without postback

Just a quick question for all of you guys. I have a Grid View inside Update Panel. My Modal PopUp pulls this Panel up. I am good so far. However when I try to do pagination on the popped up grid view, The page Posts Back. Then the Modal PopUp disappears and so does my GridView. When I click on mybutton again, It shows the Modal PopUp...

How to...Add Client Side function to button that postsback?

I have a button that closes a modal dialog box on an ASP.NET Ajax form. How do a add a client side function to be called on the same button click? currently firebug has this for the onclick javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$DefaultContent$btnPaymentActionDetailClose", "", true, "", "", false, f...

ASP.NET AJAX Control Toolkit ModalPopupExtender + HTML + JavaScript

Hello, I have a section of HTML and JavaScript that represent a dialog. The code for this is something like the following: <table border='0' cellpadding='0' cellspacing='0'> <tr><td>My Dialog</td></tr> <tr><td> [Formula Here] </td></tr> </table> This dialog will open from a link click. Currently, I have the content of the d...