In my application, I have a panel where I am displaying no of new comment are posted
(admin window) . But I want a popup message box whenever new comment is posted like "New Comment has been posted" with refreshing the page...How can I implement this?
...
Hello All,
I have an Ajax callback function, which will load a html file and pop up the content of this HTMl file in a pop up window.
It works so far, however, i want to get rid of the location bar in the pop up window.
Here is my code
function _checkPopUpUpdate() {
var callback=new Object();
callback.success=this.o...
I have a combobox that stays open if the user does not make a selection. I'd like to use a trigger to close the combobox after 2 seconds. Here is a portion of my combobox style that includes my failed eventtrigger attempt at accomplishing this:
<Style x:Key="ComboBoxStyle" TargetType="{x:Type ComboBox}">
<Setter Property="FontFamily...
Currently, under IE8 and in IE7, using javascript window.open and target param is set to _blank, and while (Always open pop-ups in new tab) is checked, the pop up will open in new tab.
Is there a way to force the new pop up to open in a new window from javascript?
Is there a solution other than javascript?
Thanks
...
Is it possible to make a popup window actually pop "up" in Firefox when Firefox isn't the foreground window. Standard behavior is for the window to pop under when Firefox isn't in focus.
If there is a way to use JavaScript to do this that would be best. But if not, I would also like any Firefox extensions or settings that would allow th...
Hello. I should implement periodically popup form at other form. This popup form isn't common design, so I couldn't use standard messages. I need implement smoothly showing\hiding of this popup form.
Now I use timers for hide\show this form, but have strange problems.
If I run only Show\Hide popup form process all is OK, but when I try ...
Currently createPopup() is only supported in IE (See http://help.dottoro.com/ljsxcrhv.php).
Is there a univsersal createPopup() replacement? Or is conditional code required based on browser detection?
Hopefully, I am looking for something that 1. not only provides the same functionality, but 2. has the same interface or at least cou...
How to open a popup page that has parameters(calculated in button event) in button event
ButtonClick()
{
string id=TextBox.Text;
/////HERE i want to open a popup as "Index.aspx?ID=id" ///////
}
PLESE RESPOND SOON
...
Photosuru has a neat effect - when you mouseover the thumbnail image a popup opens showing the image enlarged. I am trying to get this to work on a listbox, similar to a tooltip, I need to mouseover an item and have the popup open. The problem, the popup only shows the item selected in the listbox. I tried looking through Photosuru code ...
I am trying to create a custom pop-up box for my website that would look something like i currently have for the "contact me" tab when selected. I would like something that I could easily change the content in. I would also like for it to automatically load only once per visitor per week. If you have any suggestions they would that wo...
How can i access document property of already running explorer processes. i am using following line of code to get process.
$ie2 = Get-Process |where {$.mainWindowTItle -eq "Windowtitletext"} | where {$.ID -ne $ieParentProcessNumber}
now i want to do some processing on this processes like $ie2.Document etc.
...
Hi,
This is a rather simple question. I need to confirm. (So don't flame me, please).
If a user has a pop-up blocker on, will it effect pop-ups within a Flex application. If I use the PopUpManager class in my app, is there the possibility that it would be blocked. (I'm writing about pop-ups within the app, not advertising pop-ups and ...
I want to position a modal box (position: absolute) out of browser, but I can't get it work.
It would be cool to position modal box on secondary monitor (if user has one, of course).
Hey, this one keeps me frustrating :/
...
I have a pop-up window with a form in it. On submit of the form, I wish to redirect to a particular page, but on the parent window (not on the popup).
How can I achieve this using Javascript?
After Application of Josh Idea
I am calling a javascript function to submit a form, in this javascript, below is the mentioned code
So Can thi...
This code will open go.com in popup window:
<a href="javascript:void(0)" onClick="javascript:window.open('http://go.com','','status=yes,scrollbars=yes,toolbar=no,menubar=no,location=no ,width=300px,height=300px')">open</a>
and I want to use alert('closed!') in main page, when popup is closed and I can't edit popup page for use onunlo...
I have used popup at many places in my website (its in PHP with Mysql DB and lots of javascript). These are mostly been blocked my browsers, which restricts user to move ahead. what should do in my code so that my popups becomes Popyp blocker independent..
...
void Start()
{
System.Windows.Controls.Primitives.Popup p = new System.Windows.Controls.Primitives.Popup();
p.HorizontalOffset = this.ActualWidth / 2;
p.Width = 100;
p.Height = 100;
p.VerticalOffset = this.ActualHeight / 2;
DockPanel dock = new DockPanel();
dock.Children.Add(new Button() { Content = "Обновлено...
I have a aspx page. Users can perform an action on that page. but that actions goes through series of other actions. for example- suppose there is JOin Community link on that page. When user clicks He is asked to Login/Register(A) THEN He is asked to fill up a brief profile(B) THEN he is asked to join community as member/admin etc (C). S...
Hello,
i am not able to find the reason why this popup won't work.
He recognizes the hover above the table, but it has no effect on the popup.
The weird thing is, when i include the path to the table to the .popup class he won't do anything, not even modify the span itself. I assume it has something to do with the selectors, but the pat...
Hi,
I am relatively new to web development, so perhaps this is a rookie question. I am trying to set up an ASP.NET MVC web site to implement DotNetOpenAuth as an OpenID relying party.
Right now it is all functioning, so that is pretty exciting. My goal though was to have the OpenID authentication take place it a popup window. This...