Modal popup extender inside another modal popup extender
Hi all,
I would like to know if this is possible.
Lets say a have a page with modalpopup extender and with update panel.
Onto that modal popup extender I dynamically and with async postback load a UserControlA. That UserControlA also contains modal popup extender and updatepanel, which loads UserControlBdynamically (sort of modal popup inheritance:) )
Is this at least possible in theory? To show another modalpopup in the first modalpopup? Because right now, trigerring modalpopup in UserControlA, modalpopup in page closes
UI would be something like this:
The problem...
How to Pass Information from Server-Side Code to Client-Side Code in AJAX Control Extender?
Hi All,For some reason I can't get the following to work: I have a custom AJAX Control Extender with a few getters and setters. I also have some images I want to use with the extender saved in a resource file. How to I make the respective image URLs available to the javascript of the extender? Are there any examples available?Thanks![Update: renamed the subject to something more appropriate.]
Perhaps I can clarify a bit:I have set up a getter and setter to set the image URL from the resource file: 1 [ExtenderControlProperty]
2 public string CoverURL
3 {
4 get...
ajax modal popup extender
Hi! Is there a way to show the item that is about to be deleted in the modal popup delete confirmation? Like instead of saying: Are you sure u want 2 delete this item, I need to say Do u want 2 delete ThisFile.PDF? Thanks!
You could use the ConfirmButtonExtender that has the ConfirmText set to append the item's name to the end of your confirm 'are you sure' message. I did a little post on using the ConfirmButtonExtender with a data grid that might be helpful.
http://rampidbyter.com/post/ASPNet-Gridview-using-JavaScript-Confirm()-dialog.aspx_____________________________________...
AJAX Modal Popup Extender
Hi,
Is AJax modal popup extender works in UserControl? I put them in there, the error say "Overflow stack". If it works in usercontrol, do I have to put scriptproxy in there too. Can anyone give some sample code for this.
Thanks,
Hi,It can be used in UserControl. And it's not necessary to use a scriptProxy. Here is a sample:[UserContrl] <%@ Control Language="C#" ClassName="WebUserControl" %>
<script runat="server">
</script>
<asp:Button ID="Button1" runat...
List of client side function of extenders and controls for client side
Hello All,I am using AJAX control toolkit for my current project. Now I need to find out what client side functions I can call on an extender. Lets say I am using a PopControlExtender. Now I want to show the popup from a JS funtions.If I can do a guess then it would be something like this$find('ppce').show();From where I can find what client side functions I can call on those extensders. This is really a frusterating thing. I learn about extenders only from Learn tutorials, no help here and there. Can anybody please tell me where are documentations about all the extenders in the tool...
Error in Ajax modal popup extender
I met one JS issue when i clicked the button in the modal popup extender window. The error is "Microsoft JScript runtime error : Sys.InvalidOperationException : Handler was not added through the Sys.UI.DomEvent.addHandler method" <asp:Button ID="btnShowPopup" runat="server" Style="visibility:hidden" />
<ajaxToolkit:ModalPopupExtender ID="mdlPopup" runat="server" BackgroundCssClass="modalBackground"
CancelControlID=&qu...
Problem in Ajax PopUp Modal Extender?
How to use ajax PopUpModal Extender in Asp.net 2.0?What are the Requirments?How to Use?Sample Code if any?
Hi! You can watch the video here: http://www.asp.net/learn/ajax-videos/video-85.aspxYou can find setup instructions here: http://www.asp.net/AJAX/AjaxControlToolkit/Samples/Walkthrough/Setup.aspxYou'll also find SampleWebSite folder with sample code in the extensions package....
jQuery Modal popup and AJAX UpdatePanel
Hi all,
Can someone explain to me why controls in an ajax-updatepanel don't work when I use jQuery to popup this updatepanel? If I use AJAX modalpopup-extender instead of the jQuery one, it works. With jQuery popup, no calls to the code-behind are made at all.
The jQuery Modal Popup I use:http://www.ericmmartin.com/simplemodal/
Thanks in advance
Have any code to show us? Hard to just guess. Also some details as to it just doesn't work may be helpfull. How does it not work? It doesn't come up? Or it comes up but the update panel isn't being triggered? How are you ad...
Modal Popup Extender & Postback
Is there a way to keep the Modal Popup Displayed while postback happens?
I have modal popup with a search textbox and search button and dataview. User will use this popup to type in their search word and click search to display records in the dataview. I would like to have the modal popup displayed when they hit the search button but right now it closes and I have to show it again using the server side code.
Thanks.
use html button instead of server control. Santosh kumarMark as Answer on the post that helped you.Blog
Place the Dataview inside update panel.so that time it wont do ...
Modal Popup extender & ObjectContainerDataSource
I m using a user control which internally contains a formview which is binded with ObjectContainerDataSource. If i use this user control in master page its working fine and even events of ObjectContainerDataSource is also raising.But if add User control inside a Modalpoup Extender which is in master page,then the events of ObjectContainerDataSource is not raising.So can any one help me out in solving this problem. ...
Modal Popup Extender server side code
I have a survey form that uses multiple dropdowns that are popullated from a sql table. I put an add button next to each dropdown.
When the add button is clicked, the modal popup extender displaying graying out the page. The popup has one text box , an OK button and a CANCEL button.
When text is entered into the textbox and the user clicks ok. I want the the text value to be added to the sql table and the dropdown to refresh with the value in it.
I can't execute any server side code from the "ADD' button or the button in the popup.
I thought the server side code from the ...
Client vs. Server Side AJAX.Net
I am curious to know what the advantages and disadvantages are to using the
client side declarative style AJAX
controls vs. the server side. I can't seem to think of too many reasons
why I would go to the client side libraries when I can use all the power of
ASP.NET (debugging, compiling, controls) and just wrap them in a
UpdatePanel.
It also seems kind of counter productive to use the client side
libraries because they don't utilize all the cool new developments of
ASP.NET. Am I missing something? Do the client AJAX libraries give you m...
how to use ajax toolkit modal popup extender ?
hi all,
Im having button column inside a gridview..when i click the button , modalpopup should open.
also i ll enter some value in a textbox and click submit or cancel inside pop up..
how to get this by clicking the button which is inside the grid..
thanks..
hi all,
Im having button column inside a gridview..when i click the button , modalpopup should open.
&n...
trying to do something with ajax modal popup extender
Dear all,I want to test the power of ajax..iam using modal popup extender.its popup control id = panel "panel1"inside panel1 there is a textfield, validation control "required1",btnSave and btnCancel...what i want to do is when the btnSave is clicked then the validation process is performed and afterwards the record should be stored in database..i will use classes i.e. dal and bll to call stored procedure..Is it possible to achieve this....Anxiously lookin forward for sggestions... thanks and regards what i want to do is when
hi!here is some exam...