Af:popup within an af:popup/region

Hi i have an interesting problem,
i have a popup which displays a dynamic region, within that region another popup is called in this popup none of the UI Components i have dragged from data control display properly?
has anyone come across this before?
Thanks

its version 11.1.1.7, the popup displays ok, and the labels of the field appear just not the actual component.
<af:panelGroupLayout id="pgl2" layout="horizontal">
            <af:commandButton text="Add Endpoint" id="cb1">
              <af:showPopupBehavior popupId="addEndpointPopup"
                                    triggerType="action"/>
            </af:commandButton>
          </af:panelGroupLayout>
<af:popup id="addEndpointPopup" contentDelivery="lazyUncached"
            binding="#{viewScope.EndpointTaskflowHandler.popup}"
            popupCanceledListener="#{viewScope.EndpointTaskflowHandler.cancelPopup}"
            popupFetchListener="#{viewScope.EndpointTaskflowHandler.showPopup}">
    <af:panelWindow id="pw1">
      <af:region value="#{bindings.EndpointRegion.regionModel}" id="r2"
                 binding="#{viewScope.EndpointTaskflowHandler.region}"
                 regionNavigationListener="#{viewScope.popupTaskflowHandler.hearNavigation}"/>
    </af:panelWindow>
  </af:popup>

Similar Messages

  • Popup within JSF page

    Hi,
    I have created one jsff fragment (index.jsff) and I have command Link on click on command Link I should show the popup.
    Issue is that is generic popup, I have seperate popup fragment and its binding is in its page definition file. Popup.jsff and popuppageDef.xml.
    I don't want to copy the bindings in original page index.jsff. I tried to include popup usiing <jsp:include> but it would include only source not bindings.
    Is there any way I can show popup on commandlink click without need to copy bindings on my orignal page?

    Hi,
    add the page fragment to a bounded task flow and open the task flow as a region in the popup. This way you don't need to copy the PageDef file. See the Fusion Developer guide to learn about Regions and Task Flows http://docs.oracle.com/cd/E21764_01/web.1111/b31974/toc.htm
    Frank

  • Copying of popup within screen

    hello all,
    i have small query regarding copying of popup within screen. in briefly,
    if we want to copy a screen we simply put print screen but, my requirement is i have a screen then after pushing 'Back' button i will get some popup, how to copy only that popup excluding the main screen.
    thanks in advance
    venkata prasad

    Hi...
    for that there ate multiple ways......
    1. there are some software tools available for that.
    give me your mail id.
    i will send that...
    2. use the print screen and then you can edit that using paint...
    Regards,
    Suresh.......

  • Help with Spry Rating Widget within a Spry Repeating Region

    My link  http://www.youthinkyougotitbad.com
    This is a long question, but it seems to me if answered somewhere it could help alot of people in the spry community creating comment boards as it uses three important spry widgets: rating, repeating, and tabbed panels. I am trying to use spry rating widget within a spry repeating region within a spry tabbed panel with xml. I was trying to go with the pulse light script (http://forums.adobe.com/message/3831721#3831721) but Gramps told me about the spry rating widget. But I have ran into a couple more problems. First, I couldnt find that much information on the forums or online about how to do the php page with the spry rating widget. None of these have any information on how to do it:
    http://labs.adobe.com/technologies/spry/articles/rating_overview/index .html
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/rating. html
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.ht ml
    And it seems that the official examples are so poor (or I am just ignorant, which def could be a possiblity) it shows
    to set the initial rating value from the server, but uses a static value of 4
    http://labs.adobe.com/technologies/spry/samples/rating/RatingSample.html
    <span id="initialValue_dynamic" class="ratingContainer">
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>
             <span class="ratingButton"></span>      
             <input id="spryrating1_val" type="text" name="spryrating1" value="4" readonly="readonly" />
             <span class="ratingRatedMsg sample">Thanks for your rating!</span>
    </span>
    <script>
    var initialValue_dynamic = new Spry.Widget.Rating("initialValue_dynamic", {ratingValueElement:'spryrating1_val'});
    </script>
    I finally found a site that has the php and mysql setup.
    http://www.pixelplant.ro/en/articles/article-detail/article/adobe-widgets-for-download.htm l
    But its not perfect. It has the same problem that I ran into with Pulse light, that you had to use php echo within the spry repeating region to set the initial value from the server:
    <span id="spryrating1" class="ratingContainer">
             <span class="ratingButton"></span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="<?php echo $row['average']?>"/>
            </span>
            <script type="text/javascript"
                var rating1 = new Spry.Widget.Rating("spryrating1", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id=spryrating1&val=@@ratingValue@@'});
            </script>
    So instead, I tried with three of my panels (www.youthinkyougotitbad.com) to get the average rating from xml by using the following queries:
    Recent
    Returns the blurts in most recent order along with average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC
    Wet Eyed
    Returns the blurts in highest ratings order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r Desc
    Dry Eyed
    Returns the blurts in lowest rating order along with the average rating
    SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt AND ratings.rating_value > 0.1 Group By Id_blurt ORDER BY average_r
    These all return the correct xml in the correct order.And they return the average rating of each blurt which I can send to my page with xml.
    My first question is that I dont know how to configure the query on my fourth panel Empathized & Advised the same way because it already has a Group By for the Comment Id.
    SELECT `Comment`.id_Blurt, COUNT(*) as frequency, Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt, DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt, `Comment` WHERE Blurt.Id_blurt = `Comment`.id_Blurt GROUP BY `Comment`.id_Blurt ORDER BY COUNT(*) DESC";
    Not sure if you guys need more information to understand that all, if so just ask.
    So after I get my average value through xml to the first three panels, I set my spry repeating region up like this:
    (Blurt panel)
    <div spry:region="pv1" spry:repeatchildren="pv1">           
               <div class="blurtbox">
                <!--  most recent blurt tab-->
                <h3> "{pv1::Blurt}"</h3>
                <p> Blurted from {pv1::Location} at {pv1::Date}</p>
                <p>Empathize or Advise about {pv1::Name}'s Blurt #<a href="detailblurt.php?blurtid={pv1::Id_blurt}"> {pv1::Id_blurt}</a></a></p>
               <span id="{pv1::Id_blurt}" class="ratingContainer">
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingButton"></span>
                <span class="ratingRatedMsg">Thank You! Your tears have been tallied.</span>
                <input type="text" id="ratingValue" name="dynamic_rate" value="{pv1::average_r}"/>
            </span>
            <script type="text/javascript">
                // overview of available options and their values:
                // http://labs.adobe.com/technologies/spry/articles/rating_overview/index.html
                var rating1 = new Spry.Widget.Rating("{pv1::Id_blurt}", {ratingValueElement:'ratingValue', afterRating:'serverValue', saveUrl: 'save.php?id={pv1::Id_blurt}&val=@@ratingValue@@'});
            </script>
                 <br/>
               </div>
              </div>
    Ok, it registers the right vote in the database with the right blurt id each time. But I am having two problems so far:
    One, even though {pv1::average_r} returns the correct average through xml, it doesn't show the initial rating value for each of the repeating blurts. It seems to show the first one correct, and then just repeat that same value to the other ones that follow. I just dont understand since it can get the correct server value right after you vote (afterRating:'serverValue), that I can't manipulate spryrating.js in some way that I could just replace 'ratingValue' in ratingValueElement:'ratingValue' with something to give me the initial server value.
    Two: Is even more mysterious to me, if you play around with voting on the site, sometimes you are unable to vote on different blurts. Its weird. It seems like that the javascript is completely off just on those blurts. And sometimes its a whole row, sometimes none. But so far its never a problem on the first tabbed panel (Recent), only on the other three. As far as I know, the coding is exactly the same in each tab's repeating region except for the different xml input.
    And, now on the live server, sometimes the pics of tears used to voting dont show up until you click.
    Any help on those three questions (how to query the fourth panel, how to show the initial server value, and the glitches with voting) would be greatly appreciated!! I looked pretty hard on adobe forums and other sites, and didnt see much on how to really use the spry rating widget with php and xml.
    Thanks!!

    Update:
    Ok, the first query on the Recent tab doesnt work for me because it wont show unless its already voted, and since these are supposed to be new blurts, that kind of breaks the whole site:
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC";
    So I replaced it with what I originally had.
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt ORDER BY Blurt.`Date` DESC";
    But this doesn't provide me with the initial average rating:(

  • I am experiencing Popup ads even with popup blocked, on initial clicking on any site? Is there a fix, a plugin to disable or is this a Firefox default feature?

    Hi,
    I am experiencing Popup ads even with popups blocked in preferences and always on initial opening of FF Browser when clicking anywhere on any website?
    Is there a fix, a plugin to disable or is this a Firefox default feature or is this related to something else?
    I use FF 11.0 on a Mac OS X 10.6.8
    Can you help?
    Thank you for your support and understanding.
    Kind Regards
    - Leslie Banks -

    Hi Swarnava,
    Thanks for the reply and add block link. I have used this before but this is a completely different problem that I am experiencing.
    I have a suspicion that I have something on the computer that has control.
    The advert popups are always for Mac Cleaner.
    Any other suggestions?
    Thanks for your help and support.
    Best Regards
    - Leslie Banks -
    http://www.gotrendme.com

  • Check for popup within script

    Hi folks,
    I am quite new to VBscripting and trying to create a script that automatically mass generates users via SU01.
    Everything worked fine so far but now I am stuck because of a stupid popup.
    If a user was created and afterwards deleted and I am going to recreate it, SAP will ask me if I want to use his old office data.
    If it does my script gets stuck of course because it wants to continue to supply the user details.
    Please have a look at the code (problem is
    bold):Dim strFilename, Dialog, fso, conentTextfile
    Dim Test
    Set Dialog = CreateObject("MSComDlg.CommonDialog")
    Set fsobj = CreateObject("Scripting.FileSystemObject")
    'Explorer-Dialog zum Öffnen von Dateien
    'Titelzeile
    Dialog.DialogTitle = "Datei öffnen"
    'Suchmaske (hier benutzerdefiniertes Dateikürzel)
    Dialog.Filter = "Textdateien-Datei (.txt)|.txt"
    'Filterindex
    Dialog.FilterIndex = 1
    Dialog.MaxFileSize = 260
    'Flags setzen: Explorer-Dialog mit langen Dateinamen
    Dialog.Flags = &H1814
    'Datei öffnen
    Dialog.ShowOpen
    'Ergebnis der Dateianwahl ausgeben
    strFilename = Dialog.Filename
    If strFilename <> "" Then
    Set textfile = fsobj.OpenTextFile(strFilename,"1")
    do while not textfile.AtEndOfStream
    'Zeilen einzeln einlesen
    TextLine = textfile.ReadLine
    UserData = Split(TextLine,",")
    If Not IsObject(application) Then
    Set SapGuiAuto = GetObject("SAPGUI")
    Set application = SapGuiAuto.GetScriptingEngine
    End If
    If Not IsObject(connection) Then
    Set connection = application.Children(0)
    End If
    If Not IsObject(session) Then
    Set session = connection.Children(0)
    End If
    If IsObject(WScript) Then
    WScript.ConnectObject session, "on"
    WScript.ConnectObject application, "on"
    End If
    session.findById("wnd[0]").maximize
    session.findById("wnd[0]/usr/ctxtUSR02-BNAME").text = UserData(0)
    session.findById("wnd[0]/usr/ctxtUSR02-BNAME").caretPosition = 7
    session.findById("wnd[0]/tbar[1]/btn[8]").press
    'Here is the problem!!!
    Test = session.findById("wnd[1]").Type
    if test = "GuiModalWindow" then
    session.findById("wnd[1]/usr/btnBUTTON_1").press
    end if
    'If I check for the popup window (as shown above) and the user didn't exist before (so there is no popup window) the program will exit with an exception because wnd[1] doesn't exist. Is there any possibility to check wether wnd[1] exists?
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpADDR/ssubMAINAREA:SAPLSZA5:0900/txtADDR3_DATA-NAME_LAST").text = UserData(1)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpADDR/ssubMAINAREA:SAPLSZA5:0900/txtADDR3_DATA-NAME_FIRST").text = UserData(2)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpADDR/ssubMAINAREA:SAPLSZA5:0900/txtADDR3_DATA-NAME_FIRST").setFocus
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpADDR/ssubMAINAREA:SAPLSZA5:0900/txtADDR3_DATA-NAME_FIRST").caretPosition = 10
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO").select
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/pwdG_PASSWORD1").text = UserData(4)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/pwdG_PASSWORD2").text = UserData(5)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/ctxtUSLOGOND-CLASS").text = UserData(3)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/ctxtUSLOGOND-GLTGV").text = UserData(6)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/ctxtUSLOGOND-GLTGB").text = UserData(7)
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/ctxtUSLOGOND-GLTGB").setFocus
    session.findById("wnd[0]/usr/tabsTABSTRIP1/tabpLOGO/ssubMAINAREA:SAPLSUU5:0101/ctxtUSLOGOND-GLTGB").caretPosition = 10
    session.findById("wnd[0]/tbar[0]/btn[11]").press
    loop
    End If
    Set Dialog = Nothing
    Set fso = Nothing
    Thanks in advance and kind regards,
    Bastian

    Hi,
    If it is an error in VB/VBA, you should work with errorhandlers. If it is an error (msgbox) in SAPGUI, then you should turn this off by:
    Property messageAsPopup As Boolean (Read only)
    Description:     Some message may be displayed not only on the
              statusbar but also as a pop-up window. In such
              cases, this property is set to True so that a
              script knows it has to close a pop-up continue.
    Good Luck

  • Blank popup is displayed after popup is displayed

    Hi,
    Am calling an application from a link in another application. Both the applications are in the same component. The application that is being called is being displayed in an IFRAME and am just opening the view containing the IFRAME in a popup. The problem am facing is whenever am opening some popup in the popup (application 2) there is some other blank window named SAP Popup Window. Am not sure how to attach that screen shot here but anyone has any idea how to eliminate this.
    Thanks in Advance,
    Kiran.

    So you are running another WD Component/Application within an iFrame of a parent WD Application?  This is not a recommended or supported appraoch.  You should not use iFrames to intgrate WD Components.  Instead use Component Usages to embed the component within another component (use the ALV as an example).

  • How do I prevent mackeeper and zillions of other popups?  I have popups blocked in my settings and don't have mac keeper as an application.  Thanks!

    My MacBook Air (OS Yosemite 10.10.1) is overwhelmed with popups.  Mackeeper is the most offensive, but there are others as well.  I have popups blocked in my settings and do not have Mackeeper in my applications. 

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for a file with a name of the form
              com.something.daemon.plist
    Here something is a variable word, which can be different in each case. It could be "cloud," "dot," "highway," "submarine," "trusteddownloads," or pretty much anything else.
    There may also be a file named
               com.something.helper.plist
    in the same folder.
    Leave the LaunchDaemons folder open, and open the following folder in the same way:
    /Library/LaunchAgents
    In this folder, there may be a file named
              com.something.agent.plist
    where the word something is exactly the same as before.
    If you feel confident that you've identified these three files, back up all data, then drag the three files you found to the Trash. You may be prompted for your administrator login password. Close the windows and restart the computer.
    Don't delete the "LaunchAgents" or "LaunchDaemons" folder or anything else inside either one.
    The malware is now permanently inactivated, as long as you never reinstall it. You can stop here if you like, or you can remove two remaining components for the sake of completeness.
    Open this folder:
    /Library/Application Support
    If it has a subfolder named just
               something
    (where something is the same word as before), drag that subfolder to the Trash and close the window.
    Don't delete the "Application Support" folder or anything else inside it.
    Finally, in this folder:
    /System/Library/Frameworks
    there may an item named exactly
                v.framework
    It's actually another folder, though it has a different icon. Drag it to the Trash and close the window.
    Don't delete the "Frameworks" folder or anything else inside it.
    If you didn't find the files or you're not sure about the identification, post what you found.
    If in doubt, or if you have no backups, change nothing at all.
    The trouble may have started when you downloaded and ran an application called "MPlayerX." That's the name of a legitimate free movie player, but the name is also used fraudulently to distribute VSearch. If there is an item with that name in the Applications folder, delete it, and if you wish, replace it with the genuine article from mplayerx.org.
    This trojan is often found on illegal websites that traffic in pirated content such as movies. If you, or anyone else who uses the computer, visit such sites and follow prompts to install software, you can expect more of the same, and worse, to follow. Never install any software that you downloaded from a bittorrent, or that was downloaded by someone else from an unknown source.
    In the Security & Privacy pane of System Preferences, select the General tab. The radio button marked Anywhere  should not be selected. If it is, click the lock icon to unlock the settings, then select one of the other buttons. After that, don't ignore a warning that you are about to run or install an application from an unknown developer.
    Then, still in System Preferences, open the App Store or Software Update pane and check the box marked
              Install system data files and security updates (OS X 10.10 or later)
    or
              Download updates automatically (OS X 10.9 or earlier)
    if it's not already checked.

  • Datepicker on custom popup page close the popup page when date is selected

    Hi
    I have created a custom popup page according to the "How-To": Build Custom Popup Pages in Oracle Application Express. http://www.oracle.com/technology/products/database/application_express/howtos/how_to_create_custom_popups.html
    I have changed one of the search fields to a date and use the datepicker.
    When running the custom popup page from a simple form page, and select a date with the datepicker, the custom popup page is closed, and I return to the form page.
    How do I prevent the popup page to be closed, when date is selected ?
    BR Klaus

    Is there a way to control the javascript in the
    standard datepicker.No.
    Why would you want the builtin date picker window to hang around after the user selects a date?

  • Validation popup conflicting with confirmation popup

    I am using 11gR1.
    I have a form with three buttons on it CreateInsert, Next, Cancel.
    The next button fires model layer validation on a new record, the cancel button opens a confirmation popup and if the user clicks yes, navigates the away from the form. When a user clicks next AND the form does not pass the model layer entity validation, a validation error is raise in a validation popup. The problem comes when the user then decides to not fix the validation, but instead cancel out of the form via the cancel button AFTER they have already clicked next.
    When the user clicks the cancel button it raises the confirmation pop-up and whether the users clicks yes or no on the pop-up, the model layer validation still fires. I have immediate set to true on the cancel button to bypass validation, BUT if they user has already clicked next the validation still runs when they try to answer the pop-up. This results in the user being stuck in a never ending series of pop-ups because the confirmation pop-up can not close because the model layer validation keeps firing.
    I have a dialoglistener on the dialog and a method in the backing bean (backingBeanScope.backing_IAEdit.cancelConfirmDialog) but that code never fires. Anyone else run across this problem or have any ideas how to resolve it?
    Here is the code from the command buttons...
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert"    disabled="#{!bindings.CreateInsert.enabled}"
                                id="cb5"/>
    <af:commandButton actionListener="#{bindings.Next.execute}" text="Next" disabled="#{!bindings.Next.enabled}" partialSubmit="true"                    
                                id="cb2"/>
    <af:commandButton text="Cancel"  id="cb4" action="Cancel" immediate="true">
                    <af:showPopupBehavior popupId="p1"/>
    </af:commandButton>
    <af:popup id="p1">
                  <af:dialog id="CancelConfirmDialog" title="Confirm Cancel"  type="yesNo"
                                   dialogListener="#{backingBeanScope.backing_IAEdit.cancelConfirmDialog}">
                          <af:outputText value="Are you sure you would like to cancel?" id="CancelOutput"
                                         inlineStyle="font-weight:bold; font-size:small;"/>
                  </af:dialog>
    </af:popup>

    Thanks for the suggestion, but the code in the dialoglistener never fires.
    When the user clicks yes or no to dismiss the dialog box, the validation from the bc layer fires (even though immediate is set to true on the cancel button) and pops up an error box. When the error box opens, it opens in a modal way, the dialog box grays out and all you can do is dismiss the error box. When the user clicks ok to dismiss the error box, the dialog box is still open. Then when the user again clicks yes or no on the dialog box, it again fires validation and pops up the error box in a modal way. So now the user is stuck with these two pop ups and can never get rid of the dialog box.
    Just to clarify, this ONLY happens if the user FIRST clicked the next button which triggered the bc layer validation. If the user just clicks the cancel button, everything works as expected with the dialog box popping up, the user selects yes or no, the dialoglistener code is run and the user is navigated to another page. If the user just clicks the cancel button validation is never run as is expected by having immedate set to true.

  • Modal Popup Window Hides Help Popup Window

    Hello Everybody,
    today I stepped upon an issue regarding popup windows.
    I have created an application with popup windows for editing and inserting new records.
    I left the item label templates to "Optional with Help".
    When I now click upon an item label the help - popup window appears but it is hidden behind the popup window I am working in.
    Is there a workaround for that.
    Is there a possibility to modify the z-order either of the help popup or of the modal window ?
    Any advice is appreciated.
    Regards
    Marc

    There are lot of options to customize the behavior of jQuery dialog. You can set height as auto, however you need to specify some fixed width depending on the content.
    $( "#TEST_POPUP" ).dialog({ height: "auto", width:500 });Default for height is auto, so you may not need to specify it.
    See http://docs.jquery.com/UI/Dialog for more info.
    Regards,
    Hari

  • Disabled components: to popup or not to popup context menu?

    Hi experts,
    just noticed that Swing pops up a component menu on mouse click even if the component isn't enabled. Seems to contradict the general rule to not allow "active" interaction (vs. "passive" as f.i. still showing the tooltip, the distinction is probably freely invented but serves me well enough ;) with a disabled component.
    Could half-way live with that - except that then all menu items need to be disabled individually. Another option would be to return a null componentPopup if disabled. Not generally applicable because requires subclassing. Yet another might be to force-inject a MouseListener into the rootPane: it would intercept and swallow the popup triggers if the target is disabled, otherwise delegate to the ui-installed listener.
    Comments please?
    Thanks
    Jeanette

    >
    release is out (here's a screenshot: http://www.jyloo.com/news/?pubId=1297423104000 - commercial, though) - so have a bit more time right now to tackle this
    What puzzled me most in your comments was:
    >
    (and set the show popup action enabled/disabled as well). because I expected that to be not a problem at all: RootPane's action in isEnabled(sender) first checks if the sender is the focusOwner and returns false if not. Disabled components cannot be focusOwner, so safe territory. Except ... they can, even if there are enabled focusable components around. Turns out that the KeyboardFocusManager isn't clever enough to keep transfering the focus when a whole bunch of components is disabled. Or maybe it's a timing issue, as focus transfers can be asynchronous, and/or are tricky anyway, don't know. Whatever, when disabling a bunch of components, it must be done in the inverse order of the focusTransferCycle ... and that's completely unmanageable except for most simple contexts, like focus cycle is the same as insertion order, than reversing disable loop is a brittle option
    // before calling this, focus on parent.getComponent(0)
    // the natural way of disabling the children
    for (Component child: parent.getComponents()) {
         child.setEnabled(false);
    // after the call, focus on parent.getComponent(1)
    // inversing
    for (int i = parent.getComponentCount() - 1; i >= 0; i--) {
       parent.getComponent(i).setEnabled(false);
    // focus somewhere elseINCREDIBLE ...
    overriding getComponentPopup to return null if disabled (as I did as a quick measure) is not really an option - don't want to override each and every component ;-) Another hook - not clean either, but at least manageable, might be a custom JPopupMenu: subclass and show only if enabled.
    @override
    public void show(Component invoker, int x, int y) {
        if (!invoker.isEnabled()) return;
        super.show(..)
    }This still leaves the action enabled fooled - reports true because the invoker has a componentPopup - but then, a disable comp should be focusOwner anyway.
    Cheers
    Jeanette

  • Opening a popup window from another popup

    Hi,
    I want to know if a popup window can be opened from another popup window??
    Iam trying to do this from a JSP page
    <td><a href="../common/help/Help_FAQ.html" onClick="return popup(this, 'FAQ','width=900,height=500,scrollbars=1')">FAQ.Now I have another link in FAQ page, which when clicked , rather than opening a separate full size window, overlays on the FAQ window with the FAQ window width and height.
    Any help is appreciated.

    Thanks.
    It was a mistake on my end.
    Instead of having <script type ="text/javascript"> I had only "javascript"
    and the page was not picking up the function .
    Now,, It is solved.

  • Base a popup lov on another popup lov

    I created 2 dynamic lovs.
    The first one, Lov_project, has the following code:
    select project_id, project_name
    from ke_projects
    The second Lov_budget:
    select budget_version_id, budget_vesion_name
    from ke_budgets
    where project_id = :project
    Project_id is a field of ke_budgets and ke_projects
    I created a procedure based on a stored procedure:
    rocedure KE_TEST(p_project in varchar2,
    p_budget in varchar2) is .....
    Then I use the field p_project for lov_project and p_budget for lov_budget
    Next to the bind variable, I choose lov_project.
    I can choose a project but when I click on lov_budget I have the following error:
    POPUP LOV ERROR:
    LOV: "APP_MATTHIEU.LOV_BUDG"
    Parse Message: Parse as pre-set global: "KEV".
    Find Message: LOV is of type DYNAMIC (LOV based on SQL query).
    Query: "select VERSION_NAME, BUDGET_VERSION_ID from KEV.KE_BUDGET_VERSIONS where project_id = :p_project"
    What is the problem?
    Thanks
    Matth
    null

    There can be one way of doing this,change your combobox (Driving LOV) to text box and assign a format mask to it.
    After applying the format mask to it again change the text box to combobox.
    one more thing you have to put fm before applying the format for eg.fm99999999999999999 or fm99999999999999.99
    By doing these it should work.

  • Create text area item within code in PLSQL region

    I want to embed a text area item within a region that is purely PLSQL. I want the text area to appear within the region at a specific place I am defining by my PLSQL. I have been able to create the look I want but haven't been able to process what the user enters into the text area.
    What I have now is something like this:
    p_string := p_string || '<table width="100%"><tr><td><u>Comments:</u> ' || '<textarea name="p_t06" cols="100" rows="4" wrap="virtual" id="P15_COMMENTS" value=' || a1.arb_comments || '></textarea>'' || '</td></tr></table>';
    I get the display I want but I can't do anything with the contents of :P15_COMMENTS. I presume I need an <input> tag? Is there a way to do this?
    Thanks.
    Bill

    any replies on this?

Maybe you are looking for

  • Flat file to target table map in 11G

    Hi, I am havin many problem with my 10G R1 map that have been migrated to 11G. all that my 10G map has is mapping from flat file to stage table. It also had one constant operator. i am getting error coz of this constant that i am setting up in the ma

  • How to use dc1 view in dc2

    Hi I have 3 views in dc1 now i want to use all those 3 views in dc2, can u please explain me clearly how to use those dcs in dc2. thanks kishore

  • E71 with TT6?

    Hi All I have just got TomTom 6 on my E71 and am wondering which GPS Reviever to get - either the Nokia LD 4W or the TomTom Mk2 Either way I am wanting to know if he E71 will work in the following set up? Connected to the Built in Bluetooth Phone kit

  • Cant open icloud on my pc using safari, it works fine on firefox- any suggestions?

    jljfdlds

  • Copa - text of material classification values to copa

    we will use copa for analysis. we want to have some material classification values to pa. we have the ausp value at copa by using kedr. but the problem is text of the classification values. When i try to create a value field with referance to the dat