I have a modal popup extender in my page. I use the master page, because of some layout reasons
we commented default Doctype in masterpage. (
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL]"
)
project is developed using VS2008, .NET3.5 .
I sepcified X="10" and Y="120" for modalpopup this works fine. but the problem is when the user scroll down the page he wont be able to see the modalpopup ( it always shows in the corresponding X,Y position). If i remove X,Y values horizontally it showing fine but vertically we are able to see only half of the popup window. how can we always show the popup window in the middle of the screen(eventhough user scrolls the page). I am using latest ajaxcontroltoolkit (3.5).
In a custom component, there is a popup window that should appear to me so that I can manipulate one of the lists (an in-built editor). The component is Telerik, but I don't think that has anything to do with it (maybe).
The popup window is no longer popping up to me. I wonder if it got minimized or it's a z-index thing, where the window is behind VS? But this locks up VS, and I can't do anything within it until I cancel the window. But I can't cancel the window because I can't see it... and so that is really slowing me down and is really frustrating.
Is there a way to get around this? A key press to bring this to the front or give it the focus?
I need to open a popup in the middle of my function, and in the popup i have the gridview control, i need to select one row in the gridview and after closing the popup it should come back to the same function and to same point where i opened the popup. i am using the model popup but this popup is populating after executing all the function, but i need to select one value and need to continue my function
I am developing a web application using asp.net, telerik RadAjax control. I have to need to develop when mouseover the image then show a hyperlink and when click the clink then open a new window(like facebook profile picture change).
I wish to write a modal dialog box for my project, similar to this http://obout.com/editor_new/howto_sc.aspx.Which is very simple:When a user click on a button,the page will make a call to a web service and when it is done,a Movable Modal Dialog box will show and populated with my data, along with buttons and scripts for those buttons.It seems that the panel and popup extender can show the popup but it is not movable.Should I do it with AJAX tool kit or using pure Javascript, I see a few sample on the web, but it is kind OF complicated.
I'm in a Unique position where I have to display one popup above another popup. Problem is that popup B's background does not show above popup A's content and as such you ae still able to click on buttons, ect. on popup A.
I tried to rather disable the Tab Control on popup A with javascript once popup B is displayed, but it only disables textboxes and labels and nothing else.
getting popup B's background to display above popup A or help with disabling all controls (Contained in Tab Control) on popup A?
I'm using .NET framework 4.0 and Ajax control toolkit 4, how can i simply just showing a dialog box but the webpage at the back is freezing and grey color.Hope you can understand what I mean.
I'm working on a asp.net website developed a few years ago by other developers. They've used a poup-up window which they open from the main window. I want to get rid of this popup window and replace it by a floating div instead.
Ideally I want to re-use all the code of the popup window, put it in a asp.net user control, and place the user control in a div.
My question is, what is the best way to do it ? Should I add a hidden div with the user control on every pages from which the popup used to be call ?
Or is there a way to create the floating div on the fly whenever the user clicks on some trigger (a button or a linkbutton) ?
I am opening popup window from main window. Now I want to do submit the parent window using window.opener.document.forms[0].submit() . But my parent window reloading again.
Shall we able to partial post back from child window using ajax control?
iam displaying progress image like 'processing' using ajax progress.....i dont want to touch the controls which are in page...it has to display like model popup...
I wish to do a modal popup window. I am new to AjaxControlToolkit. provide tutorial links explaining the necessary things to do this in a step by step manner.
I'm trying to use the modal popup window extender to display a 'loading' icon when the user uploads a file. I'm using the following:
Sys.WebForms.PageRequestManager.getInstance().add_beginRequest(beginReq); Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endReq); function beginReq(sender, args) { // shows the Popup $find(ModalProgress).show(); } function endReq(sender, args) { // shows the Popup $find(ModalProgress).hide(); } //END -- // on the .aspx page <script type="text/javascript" language="javascript" > var ModalProgress = '<%= modalProgress.ClientID %>'; </script> <asp:Panel ID="pnlModal" CssClass="modalPopup" Style="display: none" Width="233px" runat="server" > <img alt="Loading Icon" src="../images/redLoading.gif" />
The file is being uploaded, depending on the number of records this may take up to a minute.
</asp:Panel>
which I found on Berseth's site but I cannot get it to work. 'Null' error when it's trying to pop the window. Does anyone out here have another way to do this.
I have a parameter page in asp.net consisting of many parameters. I am using ajax and filtering the values of the parameters based on the hierarchy. For example, only those branchs appear of a department if a single department is selectd on the listbox.
I also have a link button on my parameter screen which opens a popup window with a listbox in it. On the popup window, i select some listitems which i pass through the session into parent page when the popup window is closed. Till now, my popup window gets all the values from the data source to fill the listbox.
What i want now is to show only the filtered values on the popup window based on the selections made on the parent pages' parameters.
want to show this div on middle of the form.i want to build a login form.my table contain
User name:**(it's a lable,on browser it's broken like us name : show why?)**password:
<div id="main">
<table width="600px" border="1"> <tr> [code].....
want to show div on middle of the form? and why my lable text are going to broken how to solve it?
if u gone to google.com than you see text box take position on middle of the frame.i want this .i want my controls also take position on the middle of the frame.How to do that?
I am exporting a datatable to an excel sheet. When the ExportToExcel event is fire it pops up a "file download dialog" asking if I want to open or save. What I want to do is right after user clicks on open, or save I would like to show a modal popup saying "Do you want to finalize this download?".
Here is some code, it all works except it won't show modal popup after exporting to excel. Why won't mpeFinalizeDownload.Show() run unless I comment out the line above it?
I am using modal popup extender in my web page, it is working fine, but when the page contents are expanded, modal popup displays with no background color. Here is more info -
The web page contains bunch of update panels that have reports in iFrame controls inside it. On click of save, I display modal popup with confirmation message. Initially, all panels are collapsed, modal popup is displayed properly with the gray background color. When i expand all the panels, page gets really huge and modal popup displays no background color (transparant). Below are the styles I am using -