|
I want to create a POP up box on a site i am working on, i like the pop up box facebook and linked in have, how do i create it? is there a code or something?
Can anyone help me?
Started by Raheem on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To expand a little further, pop up dialogs as you described.
As mentioned above - will allow you to do this .
|
|
I know pop ups are not good and should be avoided if possible but is that really true that now, whenever i think of using a pop up, i should always be considering other options? Are there any exceptions? And the last question is: what is the default replacement...
Started by Hertanto Lie on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I think that pop-ups that they can make....
Look for example at jQuery UI Dialog
The "Web2.0" pop-up arose from having pop-up foisted on users in the form of advertisements.
You can use any javascript based dialog.
|
|
Is it easy to create GLUT pop-up menus for my OpenGL application? If yes, how?
Started by Ashwin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is a code sample that creates a pop-up menu with 4 options:
// Menu items enum MENU_TYPE { MENU_FRONT, MENU_SPOT, MENU_BACK, MENU_BACK.
Creating and using pop-up menus with GLUT is very simple.
|
Ask your Facebook Friends
|
Whenever I set a indeterminate progress bar in a modal pop-up via PopUpManager, there is no progress displayed. If I add the same ProgressBar to the parent regularly or make the pop-up non-modal it works. Is there a reason why it doesn't work in modal...
Started by John Isaacks on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I have had some other developers look at this, it turns out it is a bug, but there is a work around..I'll post my original code and then the altered code for the work around:
original:
private function showLoading(e:Event = null):void { if(_progBar ==... .
|
|
Hello,
How to show a small pop up on click of button on a view that will be displayed in small region of the parent view.
Started by pratik on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Is the pop-up modal? Once it's up can the user do something else or do they have to 'dismiss' the view' object, or tap outside of it?
Where do you position the pop-up view if you're too close.
|
|
How to open a pop up window in code behind(C#) without using javascript.
Started by Chetan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternatively, you can show a panel in the page as pop-up window, by seting.
Can't trigger a popup".
|
|
We have some class library that will pop up a dialog, is this a bad idea to do so?
Started by Benny on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
But in certain cases you might want application can use to easily pop-up a dialog, print it to a console, or add it to a log, etc.
I think it's a bad idea.
Library, don't use pop up dialogs.
|
|
Hi all, how can i redirect to other page from pop up window with response.redirect.
Answer Snippets (Read the full thread at stackoverflow):
You need to use javascript inside the popup:
if (opener && !opener.closed) { opener.location.href = "http://www.example.com/somenewurl"; }
I'm assuming that... .
Once popup is opened to a given URL you cannot use server side script to redirect the parent .
|
|
Hello how do i create a pop up and how can i set the size etc. ?
Started by Tyzak on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd suggest going with an existing popup control, such as:
ASP.NET AJAX Popup extender (free) Telerik RadWindow (commercial but good) You could also consider tying in clientside modal windows, such as the jQuery UI dialog , which... .
There are a few options.
|
|
I found that, browsers don't block all pop-up JavaScript windows.
How to write pop-up windows in JavaScript that won't be blocked by browsers?
I mean what is the main factor that makes the difference?
Started by JMSA on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However, you can use in-page pop-up window like JQuery UI Dialog that all....
What popup window will be blocked is the good pop-up window must be show after user do some action like click or do some other event like press enter.
|