popup

Wrong application shown when popup is closed

Hi! I've a webpage which runs an application in ActiveX. In the application there's a webmail which is run in a WebBrowser control. When the user wants to attach a file to the e-mail, a popup is opened allowing the user to choose the file/files which he wants to attach to the e-mail. Here's the problem: If there are other programs ope...

WPF Popup and WindowsFormsHost Problem.

Hi, I am hosting windowsforms control in WPF popup. Problems below: If i make StaysOpen=False i can't interact with winform control. StaysOpen to false is required because when clicked outsidet the Popup region, it should close. if i make StaysOpen=True i can interact with winform control but when i click outside the area of popup, it...

How to: Create reminders that should trigger an event to be handled in a Windows application?

Hello all. I need to develop a windows application with .NET 3.5 that needs to have a calendar and user can schedule appointments. I want (not with a windows-service) that while the application is on, all the reminders that are set up for this user + reminders that admins set them up, should trigger an event in the application so I can...

How can I open a non-resizable popup at a fixed position?

See title. Using either javascript or pure HTML. ...

Javascript to Redirect Parent Window and Close Popup...in that order

One of my pages launches a popup with javascript. Inside the popup there is a link that uses window.opener.location to redirect the parent window. I want the popup to wait until the parent window is completely loaded, and then close itself. The link is to an external page, so using the parent window to close the child window is not an...

html display question

hello I am doing a library website. Where user will click on the link of books and a pop up opens with the book. I want the pop up page will be a single page in which the various books will uploaded but not using iframe. How I will display the book content in this way? provided I have all the books in a html format. ...

Why does my JavaScript / jQuery interaction with a child window raise a "permission denied" error?

I have some code that I would swear was working a month ago. However, now the code throws a permission denied to get property Window.jQuery error. I can see this error in the Firefox error console. The code in question belongs to a window that was opened via JavaScript. This code attempt to update the contents of a DIV in the opening ...

Popup submenu not visible after iframe width

embedded a popup menu inside an iframe. But second/third level sub-menus not visible when it goes beyond iframe width. Thanks in advance for any help!! ...

How to pass data from Ajax popup to parent page?

I currently have an Ajax pop up window displayed from the main page of my application. In this pop up I have select list and I want to pass the selected value from the pop up back to the main page when the user closes the pop up window. I feel there is an elementary way to do this, but I can't seem to figure it out. ...

ContextMenu.StaysOpen Property (WPF)

Simple question here: what does the StaysOpen property of the ContextMenu (or equivalently Popup) control actually do? I have tried observing the difference in behaviour, but I notice none whatsoever. MSDN states the following: true if the menu should stay open until the IsOpen property changes to false; otherwise, false. The defau...

Opening popup links in UIWebView, possible?

Hey guys, I have a UIWebView which I'm using as an embedded browser within my app. I've noticed that links in webpages that open new windows are ignored without any call into my code. I've tried breakpointing on - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigation...

WPF issue with TreeView and Popup controls

When using a Popup inside a TreeView in WPF I am running into an issue where the controls inside the popup become unusable. For example, using the following code the ToggleButton inside the popup can only be toggled once and then becomes unable to be toggled back. Is there any way to work around this issue? <Page xmlns="http://schemas.m...

not able to enter mouse into pop up div

<html> <div id="divPopup" onmouseout="removeDIV(this,event);" style="display:none;width:100px;height:100px;color:Navy;border:2px;border-color:Red;border-style:solid;"> Yes its me </div> <table> <tr><td>A</td></tr> <tr><td>S</td></tr> <tr><td onmouseover="loadDIV(event)" onmouseout="r...

CSS absolute position alignment

Hi, I have a login form on my website that displays when a user clicks a button. It is a div that floats over other content. It only takes up a small portion of the page (directly below the sign in link). It all works fine apart from one small thing. It displays aligned to the left of the sign in link (i attempted a diagram below). ...

To show Modalpopup in javascript

hi guys, I have a modal popup extender as follows <div id="target" runat="server"></div> <cc1:ModalPopupExtender ID="ModalPopupExtender1" BehaviorID ="Modal" runat="server" TargetControlID="target" BackgroundCssClass="modalBackground" PopupControlID="Panel1"></cc1:ModalPopupExtender> <asp:Panel ID="Panel1...

prevent popup from opening new window in Ie6

Hello. I create a popup using window.open in IE6. Created popup contains a link to other page, which i want to show in the same popup window, but after clicking on the link, the target page is displayed in another brand new popup, so i have 2 popups opened at that moment. How can i make a new page loaded in the same popup that holds a li...

jQuery tooltip not working as expected - REVISED

Hello all, Ok I fixed the original problem but I would like now is to add the title value back to the anchor tag of id="contact" from the id="contact-info" popup before I remove the popup The JS this.contactPreview = function() { jQuery("a.contact").click(function(e){ this.t = this.title; this.title = ""; var c...

jQuery tooltip popup re-insert title value on close - WORKING YEAH!!!

Hey all, This is part two of the question: On closing of the popup I need to re-insert the title="" value to the original value before the popup link was clicked. the popup uses the title='" value to display in the popup and removes it from the original tag so as to not display in the tooltip if someone hovers over the link. The JS t...

[Jquery] - get content from textbox place in iframe layer

hi people. i am new to jquery so kinda new your help/guide to do this. i got a textbox where i write html tags. now what i want to do is a preview button. it should open a jquery layer/popup with the written html from my textbox so i can se it. is there a way that any of you could guide me to where to find scripts like this or help me ou...

Ajax pop up box using Ruby on Rails

Hi, This is a pretty basic question but I can't find a good answer for it. I have a page in my Rails app where there are many objects that can be 'flagged'. Clicking the flag button should display a little box with a confirmation, little form, etc. The trouble is I can't figure out how to do this using RJS templates. I've been usin...