"Inside Webpage" Popup

Is there a way I can add in a popup like www.Microsoft.com
has with its side bar? For example, if you go to Microsoft.com and
on the right side click Products & Related Technologies, it
opens a popup in the website like Windows does. Is there anyway I
can do that in my own website?
If so, how?
If not, thanks for trying to help me out.

Microsoft have done this because they have a large amount of
menu options and want to use thumbnail graphics to enhance the user
experience?
There are a number of ways to do this. The easiest way is to
use JavaScript (ECMA Script) to generate a new window, which
pops-up when the user clicks the link. Such techniques are popular
and easily coded (search Google for simple Javascript pop-up
window). Beware how you use this technique though as it can easily
offend as please if you get it wrong. There is more to simply
poping open another window, you need to consider why you are doing
it and how you are going to let the user interact with it. There
are many variables that you can define when you build this
functionality. Consider accessibility and usability too.
Another way of doing this type of thing is with AJAX or using
css to control absolutely positioned block level elements on the
page. These techniques are a little more imvolved buy there is
plenty of information on the Web for you to research.
Nick Barling
www.barkingweb.com

Similar Messages

  • Flash content inside windows popup is not rendering on IE10

    Hi,
    Flash content of my application is not appearing when it is inside windows popup. When I close popup, I can see the content momentarily.
    This happens in case of popup only.
    Look at this video - http://youtu.be/SupJYZoLk5I
    I am not able to find why it is happening only with given configuration.
    Browser- IE10
    OS - Windows 8
    Thanks,
    Prithveesingh.

    The site is intranet one and can not be accessible from outside.
    Wanted to add one more thing  that it works fine when tried on IE10 on Windows 2012. 
    1. The issue occurs with popup.
    2.Popup URL works fine if directly open in browser.
    3. The swf file loads but seem like not initialize.
    4. It works on IE10 on Win2k12. In Win2k12, Flash Player publisher is shown as 'Adobe Systems' while in case of Windows 8, it shows as
    'Microsoft Windows 3rd party component'.
    The popup mentioned here is modal dialog opened using javascript function window.showModalDialog. Instead if we use window.open things works fine, but we need modal dialog the way it is there.
    Thanks,
    Prithveesingh.

  • Link inside webpage does not work.

    link inside webpage does not work ( http://ochre.lib.uchicago.edu/marathi/ ). i was able to launch a java program by clicking the link in the middle of the page in firefox 6. now it doesnt work in latest versions. link works fine in IE9

    Anyone?.

  • AF:MESSAGE INSIDE AF:POPUP?

    Hi everybody:
    Since two days ago, i´ve been trying put validation and conversion messages inside a popup with little success, is part of use cases in project where i work. I would know if this is posible. I was thinking that i could capture facesmessages with a phase listener, after capturing faces messages put them inside a popup and show it. There´s any simple form to do that?
    THANKS IN ADVANCE FOR YOUR HELP!!!!

    Thanks for your answer Puthanampatti, but i think i´ve not been clear. That i want to do is following:
    - i have a jsf page with some inputs.
    - i have a command button inside this page
    - i have a popup that should be shown with af:messages when exist a validation or conversion problem when i click command button
    it could be something like this
    <f:view locale="es">
    <af:document id="d1" title="Title 1">
    <af:form id="f1">
    <h:inputText id="telefonoResidencia" value="#{bean.numeroTelefonoResidencia}"
    required="true"
    requiredMessage="#{bean.mensajeTelefonoResidencia}"/>
    <af:commandButton id="button" text="Click me">
    <af:showPopupBehavior popupId="popup" align="afterStart"/>
    </af:commandButton>
    <af:popup id="popup" contentDelivery="lazyUncached">
    <af:dialog title="el popup" id="d2">
    <af:message id="mensajeTelefono" for="telefonoResidencia"/>
    </af:dialog>
    </af:popup>
    Popup is shown in mi page but i dont know how to put inside it all af:message
    THANKS AGAIN, FOR YOUR HELP

  • Af:showPrintablePageBehavior inside af:popup - af:dialog

    Is there a standard way to get the showPrintablePageBehavior command working inside a popup? Ive placing layout components like panelsplitters and panelgrouplayouts inside the popup (in the hopes that the showPrintablePageBehavior would recognize them) but none of that works. If the showPrintablePageBehavior is directly inside the af:dialog then the result is that it renders the underlying page. If showPrintablePageBehavior is inside a layout which is inside the dialog, the result is an empty page. FWIW the empty page seems to contain some of the standard html that an ADF popup would normally have, but its definitely not rendering the content in any way.

    Same thing, the "printable" page is completely blank. Below is the af:popup src code.
    <af:popup id="stretch-popup">
           <af:dialog>
                <af:goButton text="goButton 1" id="gb1"/>
                <af:panelStretchLayout id="psl2">
                  <f:facet name="bottom"/>
                  <f:facet name="center">
                      <af:group >
                        strecth layout content
                      <af:outputText value="here is some output" id="ot1"/>
                      <af:commandLink text="a command link" id="cl1"/>
                      <af:outputText value="some other output" id="ot2"/>
                      <af:commandButton text="Print" >
                        <af:showPrintablePageBehavior/>
                      </af:commandButton>
                      </af:group>
                     </f:facet>
                  <f:facet name="start"/>
                  <f:facet name="end"/>
                  <f:facet name="top"/>
                </af:panelStretchLayout>
              </af:dialog>
           </af:popup>

  • Pdf inside af:popup?

    is it possible to show a pdf inside adf popup ?
    thanks

    Not one option, the only option. Unless you want to open the PDF in an applet or a Flash application, which would be bad.
    ~ Simon

  • Vba to dismiss an IE8 or IE9 "message from webpage" popup window

    In excel or word, paste the following code into a vba normal module and run it.   The code goes to a public web site and tries to lookup a school.  The website pops up a "message from webpage" dialog that warns me that the the school
    number is not valid.
    My program can detect that popup, but how can I reliably and automatically dismiss it?
    I have a workaround that uses sendkeys but about 10% of the time the popup remains.
    Does anybody have a solution that does NOT require sendkeys? The ideal solution would also work when objie.visible = false.
    option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Sub t1022()
    Dim objie As Object
    Dim i As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    MsgBox "popup detected"
    End If
    End Sub

    Hi,
    If there is a will, there is definitely as way. The following definitely works!
    Copy and paste the following code in a module.
    Option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    'Sends the specified message to a window or windows. The SendMessage function calls the window procedure
    'for the specified window and does not return until the window procedure has processed the message.
    Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
    (ByVal hWND As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    'Retrieves a handle to the top-level window whose class name and window name match the specified strings.
    'This function does not search child windows. This function does not perform a case-sensitive search.
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" _
    (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    'Retrieves a handle to a window whose class name and window name match the specified strings.
    'The function searches child windows, beginning with the one following the specified child window.
    'This function does not perform a case-sensitive search.
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Public Const BM_CLICK = &HF5&
    Sub t1022()
    Dim objie As Object
    Dim i As Long, hWND As Long, childHWND As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    'MsgBox "popup detected"
    DoEvents
    hWND = FindWindow(vbNullString, "Message from webpage")
    If hWND <> 0 Then childHWND = FindWindowEx(hWND, ByVal 0&, "Button", "OK")
    If childHWND <> 0 Then SendMessage childHWND, BM_CLICK, 0, 0
    End If

  • Session gets expired on using richTextEditor inside a popup

    Hi,
    I have a a custom component inside a jsff page.In the custom component I have a popup having af:richTextEditor inside it.
    While closing the popup I get error message popup saying :
    Because of inactivity, your session has timed out and is no longer active.
    Here is the code snippet :
    <af:popup id="textPopup" childCreation="deferred"
    autoCancel="disabled"
    contentDelivery="lazyUncached">
    <af:dialog id="textDlg" stretchChildren="first"
    contentHeight="150" contentWidth="450"
    title="#{viewcontrollerBundle.RICH_TEXT_DIALOG_TITLE}"
    affirmativeTextAndAccessKey="#{viewcontrollerBundle.RICH_TEXT_DIALOG_OK}"
    cancelTextAndAccessKey="#{viewcontrollerBundle.RICH_TEXT_DIALOG_CANCEL}"
    dialogListener="#{viewScope.viewerBean.handleRichTextDialogListener}"
    resize="on">
    <af:richTextEditor id="textEditor"
    label="#{viewcontrollerBundle.EMPTY_LABEL}"
    value="#{pageFlowScope.richTextDialogText}"
    toolboxLayout="all customToolbar"
    autoSubmit="true" simple="true"
    contentDelivery="lazy"
    inlineStyle="width:500px;">
    <f:facet name="customToolbar">
    <af:group id="pt_g1">
    <af:commandToolbarButton id="txttlbr_user_btn"
    icon="/oracle/imaging/viewer/images/user.png"
    shortDesc="#{viewcontrollerBundle.ANNOTATION_CURRENT_USER}">
    <af:richTextEditorInsertBehavior for="textEditor"
    value="#{viewScope.viewerBean.currentUserName}"/>
    </af:commandToolbarButton>
    <af:commandToolbarButton id="txttlbr_date_btn"
    icon="/oracle/imaging/viewer/images/clock.png"
    shortDesc="#{viewcontrollerBundle.ANNOTATION_CURRENT_DATE}">
    <af:richTextEditorInsertBehavior for="textEditor"
    value="#{viewScope.viewerBean.currentDateString}"/>
    </af:commandToolbarButton>
    </af:group>
    </f:facet>
    </af:richTextEditor>
    </af:dialog>
    <af:clientListener method="IPMVUR_refresh_annotation_from_server"
    type="popupClosed"/>
    </af:popup>
    Thanks
    Edited by: vinitku on Mar 5, 2013 9:01 AM

    Could you double check your web.xml of th custom component and confirm that the session timeout is not too low ?

  • Text input inside webpage didn't work when address bar had been touched or input, motorola xoom JB

    After touch address bar,either input a web site or just touch, text input inside a web page is impossible. The only way I can input text into a web page is to open a web by using the most visited page. Not possible whenever using address bar.

    I found this post on linux forums which say It's a HAL related problem.
    "rmmod ehci_hcd" made it work for some of these guys Which one of them explains It's a data speed issue. Cables.., 2.0 1.0, that sort of things. Read it, I bet you'll get more out of it, It's old though.
    Try removing the module, plugging the drive, check dmesg, and mount manually.
    Last edited by Ekimino (2010-05-20 01:23:54)

  • How to display multiple selected rows in a table inside a popup?

    Hi,
    I have a table on which multiple selection is enabled. I am able to get hold of multiple selected rows i.e. i am able to iterate over the selected row keys and print their values. Now, my problem is how to display the contents of all the selected rows in a popup? I get the details of only one row when I launch the popup.
    Thanks
    Karan

    Hi,
    Not confident if this works or not but just try it...
    1. create a ViewLink between the same view Object.
    The source and destination wil be the same Vo and the source and destination attribute will be the pk of both Vos.
    2. Update the changes in Appln Module.
    Open the AM and in DataModel tab .
    select the Same VO from which you created table in the DataModel Listbox and select the VL in the "Avaible View Objects" List Box. Add under it(selected vo in datamodel listbox).
    3. Refresh DataControl accordion.
    4. in your jsff page drag and drop the child vo as a table..
    See if it works
    Regards,
    Santosh.

  • Form inside the popup isnot working properly

    Hi
    I am using Jdev 11.1.2.1
    I have UBT in which i am having a page .in this page i am having a popup that has a VO dragged and dropped as Form along with the (First,Next,Last,Previous ,CreateInsert of that VO as buttons)
    Now when i run the page and perform some CreateInsert Operations i am able to save the data but i am unable to c it in the popup using the Fist,Previous,Last... buttons.
    What could be wrong.lease help me out.

    Its telling me that too many objects with primary key.
    Ill explain what i have done.
    I have page wherein i got a table for a VO.
    Now i am inserting column in that table having button and now when i press this button i should get a popup having its child VO,wherein i shuld be able to insert multiple records and save them and get out of the popup.
    So i have done this by a popup having form with all the button set and when i perform mulitple insertions in the form in the popup and when i am trying to see the previous records that's entered in the popup i cant c them.Its throwing me too many objects with primary key error on the screen.
    One more thing here is i cant drag and drop the VO from the DC in the Popup near the button as adf table ,when i am having this popup outside the table i can .
    But as i placed the button in one of the column i compromised by draggin it and dropping it as form.
    Thanks

  • Ipad randomly failing to show videos inside webpages

    I just updated my ipad to the new OS 4.2.1, and since then some vimeo videos embedded in webpages are failing to appear.
    I was able to strem them untill one hour ago when i upgraded, now the ipad randomly fails showing some of those.
    This webpage is an example:
    www.frame.it/page/Portfolio/op/view/id/175/LogoRai1
    This videos still work on ipads with the old OS, so is not an encoding issue.
    On the new OS, the player mask is actually generated, but remains transparent.

    mmmikele wrote:
    Hi Michael,
    of course is supposed to play those and sometimes plays fine on my ipad too.
    I will try explaining myself a bit better:
    There are 5 or 6 videos on this page.
    The ipad randomly fails to show some of these, sometimes it shows 4 sometimes 2.
    And i mean it fails "to show the video box in the page". If you see the play button and the background image it will work fine, but you will notice some blank spaces beetween one video and another, those are not loaded videos.
    The mask just remains transparent.
    Yes, I see the same behavior with 4.2.1. It's probably a Safari bug. If you haven't already done so report it at: http://www.apple.com/feedback/ipad.html
    I couldn't find a work-around for it. The bug is probably in common rending code since it also appears in the iCab browser as well.

  • Region inside ADF Popup

    Is it possible to add a region to a pop up , knowing that this region is representing a task flow which communicates with a database ?

    Yes. What specific problem are you hitting?
    CM.

  • Commandbutton inside popup does not fire action/actionlistener methods

    Hi,
    I am using 11.1.1.4.0
    I have a page and on click of a button on that page, I launch a popup (using showpopupbehaviour, triggertype="click") which has a region (taskflow) inside it. The region is within a af:panelWindow inside the popup. I have also added 2 commandbuttons in the popup. Everything works fine, but the when the popup is visible, and I click the 2 command buttons on the popup, it does not execute the action method (or actionListener) method that I defined for those buttons. Any idea why this must be happening?
    Code for the popup:
    <af:popup id="popup1" contentDelivery="lazyUncached" binding="#{BackingBean.popup}">
    <af:panelWindow modal="true"
    title="#{pageFlowScope.tabContext.outcomeForPopup}"
    id="paWin12"
    helpTopicId="TOPICID_ALL"
    resize="on">
    <af:panelTabbed id="pt123" position="above"
    inlineStyle="width:650px; height:650.0px;">
    <af:showDetailItem id="sdi0"
    text="#{pageFlowScope.tabContext.outcomeForPopup}"
    stretchChildren="first"
    accessKey="0"
    immediate="true">
    <af:region value="#{bindings.r0.regionModel}"
    id="r1"/>
    </af:showDetailItem>
    </af:panelTabbed>
    <af:commandButton text="First"
    action="#{BackingBean.firstClick}"
    actionListener="#{BackingBean.firstClick}"
    id="cb3">
    </af:commandButton>
    <af:commandButton text="Second"
    action="#{BackingBean.secondClick}"
    actionListener="#{BackingBean.secondClick}"
    id="cb4">
    </af:commandButton>
    </af:panelWindow>
    </af:popup>
    In the page definition of the main screen, I have this taskflow added
    <taskFlow id="r0" Refresh="ifNeeded" activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding"
    taskFlowId="#{pageFlowScope.tabContext.taskFlowIdForPopup}">
    <parameters>
    <parameter id="outcome"
    value="#{pageFlowScope.tabContext.outcomeForPopup}"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"/>
    <parameter id="tabContext" value="#{pageFlowScope.tabContext}"
    xmlns="http://xmlns.oracle.com/adfm/uimodel"/>
    </parameters>
    </taskFlow>
    Thanks
    Vishal

    Hi friend ,
    1,Inside the pop up u give two command buttons and double click the one button and it asking for create one bean.
    2.U create the bean and inside u give coding like
    public class popvisible
    public popvisible()
    public String page1naviagetion()
    // Add event code here...
    return "popTouser";(This is is Control flow case name it will go to another JSPX page.)
    public String page2navigation()
    // Add event code here...
    return null;
    }

  • ShowPrintablePageBehavior is not working inside popup. Is it an ADF Bug?

    Hi,
    I am facing some issues with showPrintablePageBehavior component.
    1. I have placed a command button with showPrintablePageBehavior inside a popup. But I am getting a blank page in print mode. But the showPrintablePageBehavior is working fine without popup.
    2. I have a pivot table with a button having showPrintablePageBehavior and these components are surrounded with panelSplitter. But pivot table is not rendering in print mode.
    Using JDeveloper 11.1.1.5.0 / 11.1.1.6 - adfbc
    code:
    <af:form id="f1">
    <af:panelSplitter id="ps1">
    <f:facet name="first">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl1">
    <af:commandButton text="Popup" id="cb1">
    <af:showPopupBehavior triggerType="action" popupId="p1"/>
    </af:commandButton>
    <af:commandButton text="Print" id="cb3">
    <af:showPrintablePageBehavior/>
    </af:commandButton>
    <af:outputText value="Hai Output Text" id="outputText1"/>
    <af:popup id="p1">
    <af:dialog id="d2">
    <af:panelSplitter id="ps2">
    <f:facet name="first">
    <af:panelGroupLayout layout="scroll"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    id="pgl2" clientComponent="true">
    <af:commandButton text="Print" id="cb2">
    <af:showPrintablePageBehavior/>
    </af:commandButton>
    <af:outputText value="Hai Popup Output Text" id="it9"/>
    <af:clientAttribute name="print" value="true"/>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelSplitter>
    </af:dialog>
    </af:popup>
    </af:panelGroupLayout>
    </f:facet>
    </af:panelSplitter>
    </af:form>
    Thanks,
    Dinil Mithra V S

    Thank you Srinivas,
    Point 1.
    I wanted to print the content of popup. So I have placed an af:outputText text inside af:panelSplitter component. But this layout is not rendering in print mode while printing from a popup ant it works without popup.
    Point 2.
    I have downloaded and deployed oracle dvt-demo war into my local wls.I can see the same issue (pivot table is not rendering in print mode) in my local deployed version.
    Thanks,
    Dinil Mithra V S

Maybe you are looking for

  • Trouble with flash preview of PDF documents, embedding.

    Yesterday, I noticed that the embedded PDF documents that I have posted on my blog weren't loading. The message in the embed window reads: 'Unable to Create Flash Preview. Please download to view in the native application.' In Acrobat.com, when I try

  • Replacing / Compiling Database Triggers in a HA/High Load system

    Hi there, My collegue has just asked me if downtime needs to be scheduled to replace an After IUD Database trigger where I've made a minor change. If this were a package or procedure, the answer would be an obvious yes, as I'd be wary of my users get

  • Bluetooth on ipad

    Am unable to transfer files between my MacBook air and iPad 2 using bluetooth. MacBook air gives a message that the necessary services are not available on iOS device.mplease help

  • Help using FlexUnit with Nant

    Hi, I created some tests which run perfectly if I use my IDE (FlashDevelop) to run them. I've been trying to create a Nant script to automate my tests and have the results written into an xml file. The entire build system where I work uses Nant inste

  • Importing 32bit HDR

    In Lightroom I select 3 photos then choose Photo>Edit in>Merge to HDR pro in Photoshop.  After creating the 32 bit image and saving, the image is imported to Lightroom as a .PSD file that Lightroom cannot read.  The editable 32bit file does not appea