Tagged Questions
The modalpopup tag has no wiki summary.
2
votes
2answers
753 views
Display modal after postback without ASP.NET Ajax
I have an ASP.NET button. When the button is clicked, I'd like a modal popup to display after the server-side code for the button runs. I don't want to use the ASP.NET Ajax control toolkit modal ...
2
votes
2answers
211 views
textfield value empty when i fill it with javascript
i am using modalpopup to enter some value in a textfield. after the value is selected in the modalpopup view, the modalpopup is closed and the value has taken the propriate value. Even if the value is ...
1
vote
1answer
106 views
Disable animation of the modal popup extender
How can I disable the animation effect while the ModalPopupExtender is shown? Here is my coding:
HTML
<script language ="javascript" type="text/javascript">
function pageLoad() {
...
1
vote
2answers
111 views
Textbox in modal popup inserts duplicate entries
My textbox is supposed to enter one value and enters about 8 of the same thing. Anyone know why?
<li class="item">
<asp:LinkButton ID="FeatureButton" ...
1
vote
1answer
83 views
Shading every other row in a VB.net Listview?
I have been Googling this for about a day now, and every post I find is too old and Visual Studio doesn't recognize some pieces of code that people have posted. I have a dynamically populated ...
1
vote
2answers
558 views
disable background in jquery popup
OK, So i have this snippet http://jsfiddle.net/8vFEd/ here;
whenever the popup comes up, I either want to disable the background, so that users can't click on another language until they close the ...
1
vote
0answers
339 views
button inside modalpopup doesn't fire the event
i've a simple search form with two textfield and on button. the result is displayed in gridview. All this is inside a modalpopup. the content of the modalpopup (the controls) are in the same page ...
0
votes
0answers
61 views
Modal Popup with dropdown list
Good day guys! I have a major problem here. This deals with the modal popup with dropdownlist inside.
take a look at this site http://pinoyarea.com/videochat/compliments.php
if you click the Send ...
0
votes
0answers
43 views
Modal popup does't show UserControl when this control has ViewStateMode=“Enabled”
Using:VS2010, asp.net, ajax control toolkit
I have an aspx page with a user control in a panel(laying statically), which I pop up by calling show metho of ModulPopupControl. In my user control I ...
0
votes
4answers
224 views
How to avoid postback of parent page while using modal popup extender
I have a page which have a modalpopup. While i change the selected value of the dropdownlist in modalpopup, the whole page refreshes (ie. the parent page) and the controls below the popup blinks.
My ...
0
votes
0answers
50 views
WinXP IE8 asp.net ImageButton Command
ASP.NET v4. I have an ImageButton in a FormView EditItemTemplate in an AjaxControlToolkit (v4 May 2011) ModalPopup running on a page in a web application on a bunch of Windows XP machines in IE8. ...
0
votes
1answer
277 views
ASP delete button to refresh ModalPopup after click
I have ModalPopupExtenders that show associations that are NOT tied to a specific product. The associations that ARE tied to the product are shown in a tabcontainer with delete imagebuttons next to ...
0
votes
2answers
412 views
Custom action after sending Infopath form
I'm using a browser-enabled Infopath form with Sharepoint 2010 and I want to show a modal popup or even redirect to another page after clicking on Submit, saying "Thank you... Your form has been ...
0
votes
0answers
76 views
Modal yes/no popup on an button in the control from the page codebehind in C#
I am in a unique situation where the search button is in a control but the grid and the databinding of the grid is not part of the control.
But I want to show the popup on the seach button if the ...
0
votes
1answer
62 views
User control incorrectly displaying in modalpopup extender
I'm placing a user control inside a modal popup. The problem is that it is getting displayed even before the popup is being invoked. If I replace the user control with anything else, it is hidden ...
0
votes
2answers
145 views
Modal popup vanishes on postback
I'm using a ModalPopupExtender:
<ajax:ModalPopupExtender ID="ModalPopupExtender2" runat="server" TargetControlID="dummyButton2" PopupControlID="DayEntryPanel" CancelControlID="Button3" ...
0
votes
1answer
362 views
Controlling a modalpopup from multiple buttons to show different charts
I would like to present several buttons on a page that each pop up a different chart. I used a modalpopup for the first one, and I'm looking for an efficient way to manage the rest. While I could ...
0
votes
0answers
657 views
Dynamic Label text on “Please wait” Modal Popup Extender Panel
I have one ASP.NET page with few asp buttons, one Gridview (to get output), one asp TextBox control, and an asp Panel with ModalPopupExtender attached to it.
The MPE popsup with a "Please Wait" ...
0
votes
0answers
243 views
Asp.net modalpopup drag drop not working in chrome/firefox
I am having ModalPopup Extender in my application it works absolutely fine with Internet explorer but its not working fine with Chrome/Firefox
Please let me know if any one having solution
0
votes
1answer
333 views
ModalPopUp NumericUpDownExtender Problem
My Code is:
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server">
</asp:ScriptManager>
<asp:Button ID="Button1" ...
0
votes
1answer
620 views
JQuery Click Event Problem
Im creating modal popup using jquery. Im firing the modal pop up through button click event and the corresponding code here
$(document).ready(function () {
$("#Button1").click(function ...
0
votes
2answers
5k views
DropDownList in ModalPopup/UpdatePanel intermittently does not fire SelectedIndexChanged
I've got a UserControl that's used inside of an UpdatePanel.
The UserControl is a fairly simple form that appears via a ModalPopupExtender (which is also part of the UserControl). There are four ...
0
votes
3answers
554 views
Jquery modal window problem
All,
Can u please tell me whats wrong with the following code.I am trying to open a modal window here and the contents of it is a text box.
Also i get the java script error .dialog is not a ...
0
votes
1answer
856 views
ModalPopup CodeBehind Function Wait For User Response
I have set up a function which returns an enum of the button that the user clicked in the ModalPopup. I have a variable of type enum to store which button the user clicks in the button click event. ...
0
votes
1answer
792 views
show image gallery on modal popup
i have a dropdownlist containing some items,,,on selecteditem index i have displayed modal popup,,,this modal popup is used to show image gallery,,i have seen some posts where datalist is used to show ...
0
votes
2answers
555 views
How can I trigger a server-side event from a client-side event?
Short version
All I need is that, in a ModalPopUp, when the DoubleClick event of a ListItem fires, the click event of my OK button should be executed.
Detail
I have a ModalPopUpExtender, which ...