-
I have a page with a large modalpopup, which is limited to a certain size so the modalpopup uses a scollbar. Unfortunately sometimes the "background page" scrolls when using the mouse wheel instead of the contents of the modalpopup. Is there a way to "lock" the background page when...
-
//Clint side <asp:Panel ID="Panel1" runat="server" style="display:block;"> <table cellpadding="4" cellspacing="4" border="0" width="300px" style="border:solid 1px #000000; background-color:#ffffff;"> <tr><td...
-
I think that using an iframe for this is a very ugly solution. In fact, there is a much more simpler and correct way of addressing that problem: Add a parameter to your object tag (and also to embed tag if any) wmode="opaque" . <object> <param name="wmode" value="opaque"...
-
Ran -- See the PopUp control here... http://www.asp.net/AJAX/AjaxControlToolkit/Samples/PopupControl/PopupControl.aspx And see the Modal PopUp here... http://www.asp.net/AJAX/AjaxControlToolkit/Samples/ModalPopup/ModalPopup.aspx ...which should help you. HTH. Thank you. -- Mark Kamoski
-
I have a couple of text boxes in a modal popup that I would like to return to a Sub, however I can't seem to get the Sub to fire when clicking OK: 1 <asp:Button ID="btnAddApplication" runat="server" Text="Add Application" CausesValidation="false" /> 2...
-
Hi all, Following the modalpopup guide, the created modal dialog is poped up everytime the button is clicked. However, I want to have the condition checking to the button click to decide whether the modal dialog should popup or not. Can I do that? and how to do that? Your guidance is much appreciated...
-
Is there a way to have the ModalPopup display then fire off an event then close after the event has completed. Example: 1. User presses a button named Print. 2. ModalPopup displays indicating Printing... 3. ModalPopup fires an event called print 4. ModalPopup closes (automatically) when print event has...
-
I have a number of modalpopup windows on my site. When I close the window via popup.hide(), the window closes, but the page remains in modal state, in that, none of the controls (links, buttons, textboxes, etc) are assesible. I found a post http://forums.asp.net/p/1064483/1536563.aspx#1536563 dated January...
Posted to
ASP.NET AJAX UI
(Forum)
by
davenel
on
12-12-2008, 12:00 AM
Filed under: modalpopup, "Ajax Control Toolkit", "AJAX Toolkit", modal popup
-
I have a gridview in a usercontrol, here is what we want it happen when I click an image in the gridview header, a modal popup extender should show, and inside the modal popup panel, I have a textbox, if I enter something in the textbox and click ok button, the text inside the textbox should be applied...
-
I am using the ModalPopupExtender to display an editable GridView control. The GridView has four columns and there is an AutoPostBack=true set on the first column - I need to display a running total of the values entered in that column, updated when the user leaves the textbox when editing that row....