“! Unavailable popup problem. "

Hello.

This is not something that happens that the Samsung does not like.  I'm not familiar with these TVs, but I suggest that you try to do a TV factory reset.  The manual for your Samsung also indicates that the default resolution for PC input is 1360 X 768.  Try this resolution.

If you do not have the manual, you can download it here:

http://Downloadcenter.Samsung.com/content/UM/201009/20100906133759562/ [UC4000-ZA] BN68 - 02624 A-05Eng - 0903.pdf.


Tags: Windows

Similar Questions

  • Screen Popup problem

    Hello

    I need to display a popup with a message and two buttons and based on the selection of button I want to do an action.

    I am able to display the popup screen with buttons. But the buttons do not update.

    Please find the code below. Can someone tell me where I was wrong.

    Thanks in advance.

    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.system.*;
    
    class RegPopup extends Screen {
    
    private final static int _CUSTOM_SIZE = 150;
    private final static int _ALPHA = 0xBF; // 75% alpha
    private final static int _X = ( Display.getWidth() - _CUSTOM_SIZE ) >> 1;
    private final static int _Y = ( Display.getHeight() - _CUSTOM_SIZE ) >> 1; 
    
    private LabelField wait = null;
    private LabelField status = null;
    VerticalFieldManager vm = null;
    ButtonField try_button = null;
    ButtonField exit_button = null;
    
    RegPopup() { 
    
    super( new VerticalFieldManager(VerticalFieldManager.VERTICAL _SCROLL | VerticalFieldManager.VERTICAL_SCROLLBAR));
    init();
    }
    
    private void init(){
    wait = new LabelField( "Please wait ..." );
    this.add(wait);
    //this.setFocus();
    }
    public void setMessage(String message){
    if(message != null){
    status = new LabelField(message);
    this.add(status);
    this.add(new RichTextField(Field.NON_FOCUSABLE));
    addButton();
    changeMessage();
    }
    }
    
    private void addButton(){
    vm = (VerticalFieldManager)this.getDelegate();
    //vm.setVerticalScroll(0);
    //vm.setFocus();
    HorizontalFieldManager midManager = new HorizontalFieldManager(HorizontalFieldManager.FIEL D_HCENTER | HorizontalFieldManager.HORIZONTAL_SCROLL);
    try_button = new ButtonField("Try Again");
    exit_button = new ButtonField("Exit");
    // try_button.setFocus();
    
    try_button.setChangeListener(new FieldChangeListener(){
    public void fieldChanged(Field field, int context) {
    ButtonField buttonField = (ButtonField) field;
    
    closePopup();
    
    }
    });
    exit_button .setChangeListener(new FieldChangeListener(){
    public void fieldChanged(Field field, int context) {
    ButtonField buttonField = (ButtonField) field;
    
    //System.exit(0);
    
    }
    });
    
    // midManager.setFocus();
    midManager.add(try_button);
    midManager.add(exit_button);
    
    vm.add(midManager);
    
    //this.add(vm);
    
    }
    private void closePopup(){
    this.close();
    }
    /**
    * This method repaints the screen with new Message
    * Added by Koka Phani
    */
    private void changeMessage(){
    
    final Screen scr = this.getScreen();
    if(scr!= null){
    UiApplication.getUiApplication().invokeLater (new Runnable() {
    
    public void run(){
    try{ 
    
    scr.invalidate();
    
    }catch(Exception e){}
    }
    });
    } 
    
    }
    protected void sublayout( int width, int height ) {
    setExtent( _CUSTOM_SIZE, _CUSTOM_SIZE );
    setPosition( _X, _Y );
    layoutDelegate( _CUSTOM_SIZE, _CUSTOM_SIZE );
    }
    
    protected void paintBackground( Graphics g ) {
    XYRect myExtent = getExtent();
    int color = g.getColor();
    int alpha = g.getGlobalAlpha();
    g.setGlobalAlpha( _ALPHA );
    g.setColor( Color.BLACK );
    g.fillRect( 0, 0, myExtent.width, myExtent.height );
    g.setColor( Color.WHITE);
    g.setGlobalAlpha( alpha );
    }
    
    public boolean onClose(){
    return false;
    }
    }
    

    Hi all

    Thanks for your time. I found the problem. Stupid mistake not having not try catch blocks to debug.

    The problem is that I update the screen with calling the call later.

    Once again thank you for your time.

    Concerning

    Koka

  • Popup problem

    Hey all,.

    I've set up a popup window to display information.  I've got 7 of them on the same page.  They all work very well, but with one problem.  The problem is that when you close the 'x' in the upper right pop, the window (for example the 7th), it runs through all the previous popup windows.  Someone would please good enough to let me know where I was wrong?  Thank you.

    The CSS for the pop-up

    <style>
    *, *:before, *:after { box-sizing: border-box; }
    
    
    .modal-container {
      margin: 0 auto;
      padding-top: 0px;
      position: relative;
      width: auto;
    }
    
    
    .modal-container .modal-backdrop {
      height: 0;
      width: 0;
      opacity: 0;
      overflow: hidden;
      transition: opacity 0.2s ease-in;
    }
    
    .modal-container #modal-toggle {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      margin: 0;
      opacity: 0;
      cursor: pointer;
    }
    
    .modal-container #modal-toggle:hover ~ button { background: none; }
    
    .modal-container #modal-toggle:checked {
      width: 100vw;
      height: 100vh;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 9;
      opacity: 0;
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop {
      background-color: rgba(0, 0, 0, 0.6);
      width: auto;
      height: auto;
      position: fixed;
      left: 0;
      top: 0;
      z-index: 9;
      pointer-events: none;
      opacity: 1;
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content {
      background-color: white;
      max-width: 250px;
      width: auto;
      height: auto;
      padding: 10px 30px;
      position: absolute;
      left: calc(50% - 125px);
      top: 50%;
      border-radius: 4px;
      z-index: 999;
      pointer-events: auto;
      cursor: auto;
      box-shadow: 0 3px 7px rgba(0, 0, 0, 0.6);
      overflow: auto;
    }
    @media (max-width: 300px) {
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content { left: 0; }
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close {
      color: gold;
      position: absolute;
      right: 0px;
      top: 0;
      padding-top: 7px;
      font-size: 16px;
      width: 25px;
      height: 28px;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button {
      top: initial;
      bottom: 20px;
      right: 20px;
      background: none;
      color: #fff;
      width: auto;
      padding: 7px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: normal;
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close.button:hover {
      color: #fff;
      background: none;
    }
    
    .modal-container #modal-toggle:checked ~ .modal-backdrop .modal-content .modal-close:hover { color: white; }
    
    </style>
    

    PHP for each of the Pop Ups

    // total hours
    
    $total_hour_msg = "This is calculated by adding your Paid Hours (".$tot_hrs_pd.") to your Total Unpaid Hours (".$total_hours_unpaid.").";
    
    echo "<tr><td>";
    echo "<div class=\"modal-container\">";
      echo "<input id=\"modal-toggle\" type=\"checkbox\">";
      echo "<button style=\"border: none; background: none;\">Total Hours <img src=\"images/help.png\" style=\"height: 18px; margin-left: 15px;\"></button>";
      echo "<div class=\"modal-backdrop\">";
        echo "<div class=\"modal-content\">";
          echo "<label class=\"modal-close\" for=\"modal-toggle\">x</label>";
          echo "<span>".$total_hour_msg."</span></a></td><td style =\"min-width: 25%; width: auto;\">".$total_hours."</td></tr>";
        echo "</div>";
      echo "</div>";
    echo "</div>";
    echo "</td></tr>";
    

    You use the same ID 7 times more. It takes trouble.

    Personally, I would have a modal dialog box with the content transmitted through variables.

    What follows is a modal (Bootstrap) which shows a YouTube video when the user clicks on a link

    
    

    and here's the JavaScript code to manage content and modal behaviour.

    // BOOTSTRAP 3.0 - Open YouTube Video Dynamicaly in Modal Window
    // Modal Window for dynamically opening videos
    $('a[href^="http://www.youtube.com"]').on('click', function(e){
    // Store the query string variables and values
    // Uses "jQuery Query Parser" plugin, to allow for various URL formats (could have extra parameters)
    var queryString = $(this).attr('href').slice( $(this).attr('href').indexOf('?') + 1);
    var queryVars = $.parseQuery( queryString );
    
    // if GET variable "v" exists. This is the Youtube Video ID
    if ( 'v' in queryVars )
    {
    // Prevent opening of external page
    e.preventDefault();
    
    // Calculate default iFrame embed size based on current window size
    // (these will only be used if data attributes are not specified)
    if ($(window).height() < $(window).width()) {
        var vidHeight = $(window).height() * 0.7;
        var vidWidth = vidHeight * 1.77777;
    } else {
        var vidWidth = $(window).width() * 0.9;
        var vidHeight = vidWidth / 1.77777;
    }
    if ( $(this).attr('data-width') ) { vidWidth = parseInt($(this).attr('data-width')); }
    if ( $(this).attr('data-height') ) { vidHeight = parseInt($(this).attr('data-height')); }
    var iFrameCode = '';
    
    // Replace Modal HTML with iFrame Embed
    $('#mediaModal .modal-body').html(iFrameCode);
    // Set new width of modal window, based on dynamic video content
    $('#mediaModal').on('show.bs.modal', function () {
    // Add video width to left and right padding, to get new width of modal window
    var modalBody = $(this).find('.modal-body');
    var modalDialog = $(this).find('.modal-dialog');
    var newModalWidth = vidWidth + parseInt(modalBody.css("padding-left")) + parseInt(modalBody.css("padding-right"));
    newModalWidth += parseInt(modalDialog.css("padding-left")) + parseInt(modalDialog.css("padding-right"));
    newModalWidth += 'px';
    // Set width of modal (Bootstrap 3.0)
    $(this).find('.modal-dialog').css('width', newModalWidth);
    });
    
    // Open Modal
    $('#mediaModal').modal();
    }
    });
    
    // Clear modal contents on close.
    // There was mention of videos that kept playing in the background.
    $('#mediaModal').on('hidden.bs.modal', function () {
    $('#mediaModal .modal-body').html('');
    }); 
    

    Note my use of an ID because it occurs only once in my document.

    See run at BunchOBlokes - videos

  • After refresh in Internet Explorer popup problem (404)

    Hey there,

    We use JDeveloper 11.1.2.3.0.

    We have an index (jsf) page that contains a model and a dynamic region.

    During his connection, we decide what TF (bounded, fragments of the page) to load in the region (we have 2 main TF who call other 'sub' TF).

    When we have one open a random popup (based on a TF, stubborn, no fragment of page) the first time that everything works as expected but when switch us to another language and try to open the same / another pop-up window, we get a 404.

    This problem occurs in IE8, IE9 and IE10 (perhaps in other versions as well) and in all environments (local, dev, prod,...). When loading of the pop-up window, we see the content for a few milliseconds and then comes the 404.

    The access log example:

    06/Aug / 2013:14:32:40 + 0200 < IP > GET /astm/faces/team-responsibles-add-edit-train-btf/select-teams HTTP/1.1 200
    06/Aug / 2013:14:32:40 + 0200 < IP > GET /astm/faces/team-responsibles-add-edit-train-btf/select-teams?_adf.ctrl-state=1cnndlhzmq_43 HTTP/1.1 404


    When we move from the language, a full page refresh happens (using

    JDeveloper, Oracle ADF & amp; amp; Java: Refresh the Page in Oracle ADF by Code Java

    ).

    The problem only occurs in Internet Explorer and that if we open a popup before we go to another language. No newspaper in JDeveloper NI WLS.


    This thread is somewhat similar:

    Fields disappear in Internet Explorer 8 and 9

    The user suggested replacing the parent calls with TF-calls, but we already use this approach.

    Any help would be appreciated.

    The problem lied with the refresh of the page. For some reason, IE couldn't handle the new root of the view.

  • uiShell in popup problem

    Hello
    I'm working on uishell and I encouting a problem that needs your help!

    Scenario:
    I have create a JSF page named "main.jspx" using Oracle Dynamic tabs Shell, a workflow ADF named 'first.xml' and a jsf page fragment called 'first.jsff '.
    On the 'first.jsff', I create a popup 'p1' and use 'AdfPage.PAGE.findComponent ('p1')' to call 'p1 '. It does not work. I searched articles on this subject, and I know I should be written as ' AdfPage.PAGE.findComponent (' xxxx: xxx: p1'). XXX State absoluteId. How can I write the absoluteId beacause "first.jsff" is not an id in "main.jspx". Can someone give me some advice? Thank you!!


    additional:

    If the popup "p1" is created
    on main.jspx, it works. But this isn't what I want.

    Hello

    You can try to identify your component customer id by viewing the source code of your page is displayed in the browser when running.
    You can also check out this blog for a lot of control: [http://soadev.blogspot.com/2010/02/adf-faces-rc-simple-but-robust.html]

    Kind regards

    Pino

  • Popup problems

    Hello

    Here is my site: www.livepraylove.com

    Thank you very much for taking the time to help me with this problem. We used popup windows controlled on the first page of our site for some time. The built-in flash is the bar announcement in the middle of the page. By "controlled" popups, I mean that the size of the window is exactly 600 x 400 and it does not resize, toolbar, scroll bar, the menu buttons, etc. Here is an example of a typical window allowing to open:

    www.livepraylove.com/directions/churchoffice.html

    Recently, I noticed that popups are no longer - you click on the button ' tell me more ' and nothing happens. Here is the code of the HTML, between the < head > tags. I tried it in the body of the file as well.

    Quote:
    < SCRIPT LANGUAGE = "JavaScript" >
    <!-begin
    function Launch (page) {}
    OpenWin = this.open (page, "Popup", "toolbar = no, menubar = no, location = no, scrollbars = no, resizable = no, width = 600, height is 400");
    }
    -> End
    < /script >
  • Shuttle Popup problem

    Hello

    I'm struggling with this problem for a few days. I have popup containing the shuttle and a "submit" button. User can select values in the shuttle and on submit I want the value to be entered in the text box on the homepage as a comma-separated string. The first TI looked simple, but when I started to be implemented, I'm dealing with a lot of problems. What I've done,
    1. to send popup - after calculations and Validations, I called a process of PL/SQL
    DECLARE
    l_selected APEX_APPLICATION_GLOBAL. VC_ARR2;
    v_valPass varchar2 (200);
    BEGIN
    -Convert the string two points separated values in a PL/SQL table

    l_selected: = APEX_UTIL. STRING_TO_TABLE(:P2_POPUP_SHUTTLE);

    -Loop on the table to build the string to pass to the back
    BECAUSE me IN 1.l_selected.count
    LOOP
    IF i = l_selected.count
    THEN
    v_valPass: = v_valPass | l_selected (i);
    ON THE OTHER
    v_valPass: = v_valPass | l_selected (i) | ',';
    END IF;
    END LOOP;
    : P1_MAINPAGE_TEXTAREA: = v_valPass;
    END;

    with the above code, I can't get value: P1_MAINPAGE_TEXTAREA with ONLY to refresh the page, but I do not want to refresh the home page. so I thought this value through javascript by adding code to the PL/SQL block above below.
    --------------------------------------------------------------------------------------
    -the comma separated in application value point F115_HUC_VALUE
    APEX_UTIL. SET_SESSION_STATE ('F115_HUC_VALUE', v_valPass);
    -(Get_temp_val) function to get the value of the item Application F115_HUC_VALUE see code below
    HTP.prn (get_temp_val); -able to get to this point
    HTP.p ("< script type =" text/javascript"> '");
    HTP.p ("alert (" value = > "+ ' |)") get_temp_val |') ;") ; -Here I get the error message
    HTP.p ('opener.document.getElementById (": P1_MAINPAGE_TEXTAREA") .value = ' | get_temp_val |) ';');
    HTP.p ('window.close ()');
    HTP.p ("< /script >");
    END;

    -----------------------------------------------------------------------
    create or replace FUNCTION get_temp_val
    RETURN VARCHAR2
    AS
    BEGIN
    V RETURN ('F115_HUC_VALUE');
    END;
    ---------------------------------------------------------------------------
    The problem here is that if the value is comma, after this line, I get the error message.
    HTP.p ("alert (" value = > "+ ' |)") get_temp_val |') ;") ;
    How to read the value of PL/SQL in javascript?

    Is there a simple way to implement the functionality I'm looking for?

    booth.

    Hello:

    You can not call a pl/sql JS function, as you seem to do. What you are trying to achieve can be done as follows

    Delete the page defined process to format the value of P2_POPUP_SHUTTLE etc.
    Change the target of the button that submits the pop-up to be URL
    For the URL, specify

    javascript:setValue()
    

    Define a process named 'FORMAT_STRING' with a process "at the request...". ».
    Use the code below for the application process

    DECLARE
    l_selected APEX_APPLICATION_GLOBAL.VC_ARR2;
    v_valPass varchar2(200);
    BEGIN
    -- Convert the colon separated string of values into a PL/SQL array
    
    l_selected := APEX_UTIL.STRING_TO_TABLE(:P2_POPUP_SHUTTLE);
    -- Loop over array to build the string to pass back
    FOR i IN 1..l_selected.count
    LOOP
    IF i = l_selected.count
    THEN
    v_valPass := v_valPass || l_selected(i);
    ELSE
    v_valPass := v_valPass || l_selected(i) || ',';
    END IF;
    END LOOP;
    :P1_MAINPAGE_TEXTAREA := v_valPass;
    htp.prn(v_valPass);
    END;
    

    Add the JS below into the HTML of the page popup header

    
    

    CITY

  • a Pavilion a 6212n windows vista desk top. popup problem

    After that record on a pop up appears, windows has encountered a critical problem and will restart in one minute, and then it restarts, this is the case whenever I connect. It is a pavilion desk top of page a6212n. How can I prevent the computer from restarting on its own... Thank you

    Hello

    1 did you change on your computer?

    2. What is the exact error message that you receive?

    Method 1:

    I suggest you check in SafeMode with network.

    Start your computer in safe mode

    http://Windows.Microsoft.com/en-us/Windows-Vista/start-your-computer-in-safe-mode

    Method 2:

    If you are able to start your computer in safe mode, I suggest you perform the clean boot and check.

    Clean boot state helps determine if third-party applications or startup items are causing the problem. If so, you need to maybe contact the manufacturer of the program for updates or uninstall and reinstall the program.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    Note: After troubleshooting, make sure the computer to start as usual as mentioned in step 7 in the above article.

    See also:

    What to do if Windows does not start correctly

    http://Windows.Microsoft.com/en-us/Windows-Vista/what-to-do-if-Windows-wont-start-correctly

    I suggest to download and install the Microsoft safety scanner and run the scan and check.

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: The Microsoft Safety Scanner ends 10 days after being downloaded. To restart a scan with the latest definitions of anti-malware, download and run the Microsoft Safety Scanner again.

  • Out intention widget popup problem

    I got a widget named popup exit I can't function

    [YV] 1.2 developed by Vadim Yakupov ExitPopupIntent. For more information, seehttp://lpkurs.ru/exitpopupintent-eng.html

    He asked that I write the word exitpopup in the relaxation of a balloon light box

    I can't understand what he means

    Don't know if you have enough to answer.

    Anyone have an idea here.

  • Close Popup problem

    Hello

    I am developing a DateChooser custom which will display several months at a time. I've created a popup window witch contains the month and created an event that fires when a date is selected. Now it all works, but when I try to close the pop-up window I get an error.

    Source:

    private void dateSelected(event:DateChangedEvent):void {}

    trace (event.selectedDate);                         The trace shows the date

    PopUpManager.removePopUp (dpw);

    }

    The error:

    TypeError: Error #1009: cannot access a property or method of a null object reference.

    at mx.managers::FocusManager/childHideHandler() [E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\managers\FocusManager.as:1744]

    to::EventDispatcher/dispatchEventFunction() flash.events

    to::EventDispatcher/dispatchEvent() flash.events

    at mx.core::UIComponent/dispatchEvent() [E:\dev\4.0.0\frameworks\projects\framework\src\mx\co re\UIComponent.as:12266]

    at mx.core::UIComponent/setVisible() [E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\ UIComponent.as:3038]

    to mx.core::UIComponent / set visible() [E:\dev\4.0.0\frameworks\projects\framework\src\mx\core\UIComponent.as:2997]

    at mx.controls::CalendarLayout/mouseUpHandler() [E:\dev\4.0.0\frameworks\projects\framework\s rc\mx\controls\CalendarLayout.as:2497]

    Any help is appreciated!

    This is a bug in Flex.  Please fill in a bug if there is not already one.

    One solution would be to not remove the popup after a mouseUp

  • POPUP: problem to kill him

    Hi people,
    I had a my component called MSGBOX and an actionscript MSGBOXHANDLER file...

    When the user clicks a button right I call the function (in msgboxhandler.as) OpenMsgBox where is the most important command

    var msgbox:MsgBox = MsgBox (PopUpManager.createPopUp (Thi, MsgBox, true));

    And it works very well... the problem is that when you click on a close botton (in msgbox.mlxm), copy the following code
    < mx:Button id = "btn" label = "OK" click = "this.parent.removeChild (this) = false" / >
    does not work very well.
    Something to happen, because I can't move or select my msgbox, but the window does not, and other components of msgbox (such as textbox, button, etc.) can be used...

    while I found this command: this.parent.removeChild (this) .visible
    that works fine, but I'm afraid that's not a good way for this...

    Can you help me?

    Thanks Karl!
    your advice does not work, but I followed your idea to remove unnecessary code, and I discovered that the problem is the following---> removedEffect = "myHide."

    Thanks again... :))

  • IE popup problems

    I use IE 6 on windows xp.
    The problem is when I click on the link, the pop - up works, but the updating of the home page and try to get another page. He shouldn't be doing that, but rather stay on the same page.
    Firefox works without any problem.

    site is - online.piercecollege.edu/electionsimulator/college.html - and the Details of the contest link

    Thank you for your time.

    -Change

    'StatusBar',
    'toolbar=yes,resizable=yes,scrollbars=yes,width=500,height=500,left=0,top=0');">Contest
    Details

    on this subject.

    'StatusBar',
    'toolbar=yes,resizable=yes,scrollbars=yes,width=500,height=500,left=0,top=0');return
    false">Contest details

    --
    Murray - ICQ 71997575
    Adobe Community Expert
    (If you * MUST * write me, don't don't LAUGH when you do!)
    ==================
    http://www.projectseven.com/go - DW FAQs, tutorials & resources
    http://www.dwfaq.com - DW FAQs, tutorials & resources
    ==================

    "jjhtwin2" wrote in message
    News:gcgom4$Q9S$1@forums. Macromedia.com...
    > I'm using IE 6 on windows xp.
    > The problem is when I click on the link, the pop - up works, but the initial
    > page refreshes and tries to get another page. He shouldn't do it,
    > but
    > stay on the same page.
    > Firefox works without any problem.
    >
    > site is - online.piercecollege.edu/electionsimulator/college.html - and
    > the
    > link is the contest details
    >
    > Thank you for your time.
    >

  • Validation of entry in a popup problem

    I have a page where I have to present the user with a pop-up to accept the loading of a file dialog. I need to validate the file that the user uploaded. I created a pop-up dialog box with a file entry, and a pod of validator method based support for it. My validation runs, but the popup dialog box is closed and no error is presented. If I re - open the context menu, the error is presented. I need to validate the input and display the error message without closing the popup. Any help would be appreciated. I created a simple example to illustrate the issue.

    JSP:
    <?xml version='1.0' encoding='windows-1252'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=windows-1252"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
                  <af:popup id="testPopup" contentDelivery="lazyUncached">
                    <af:panelWindow modal="true" title="Test Popup Window" id="pw1">
                        <af:panelFormLayout>
                            <af:inputText value="#{testBean.testValue}" validator="#{testBean.validateTestValue}"/>
                            <af:commandButton text="Submit" />
                        </af:panelFormLayout>
                    </af:panelWindow>
                  </af:popup>
                <af:commandLink text="Show Popup" id="cl1" immediate="true">
                    <af:showPopupBehavior popupId="testPopup"/>
                </af:commandLink>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    Backing Bean:
    import javax.faces.application.FacesMessage;
    import javax.faces.component.UIComponent;
    import javax.faces.context.FacesContext;
    
    import oracle.adf.view.rich.component.rich.input.RichInputText;
    
    public class TestBean {
        private String testValue;
        
        public TestBean() {
            super();
        }
    
        public void validateTestValue(FacesContext facesContext,
                                          UIComponent uIComponent, Object object) 
        {
            String messageString = null;
            FacesMessage message = null;
            FacesContext fc = FacesContext.getCurrentInstance();
            if ( !"Groovy".equals(object) ) {
                messageString = "BAD INPUT!!";
                message = new FacesMessage(FacesMessage.SEVERITY_ERROR, messageString, messageString);
                fc.addMessage(uIComponent.getClientId(fc), message);
                ((RichInputText)uIComponent).setValid(false);
            }
        }
    
        public void setTestValue(String testValue) {
            this.testValue = testValue;
        }
    
        public String getTestValue() {
            return testValue;
        }
    }

    to close the popup...

            StringBuilder script = new StringBuilder();
            FacesContext context =  FacesContext.getCurrentInstance();
            script.append("var popup = AdfPage.PAGE.findComponent('").append().append("'); ")
                .append("if (popup.isPopupVisible()) { ").append("popup.hide();}");
            ExtendedRenderKitService erks =
                        Service.getService(context.getRenderKit(), ExtendedRenderKitService.class);
            erks.addScript(context, script.toString());
    
  • Popup PlayBook come behind the screen

    Hello

    I m development app playbook by using the web works. The problem I m facing here "drop popups list" are behind the screen in the real device...

    I don't see the problem in Simulator playbook...

    Here the snap shotlaybook popup problem

    Hi, have you tried to disable your splashscreen at startup? If it is not depended on splashscreen, you should make a comment about GitHub.

    Best regards

  • Not so much a question as letting you know that when I downloaded mozilla firefox I'm done with download trogen. Would you go through your code to solve?

    I downloaded mozilla firefox because I always said that it is safer to surf the net with her than IE and have used it for years. So I downloaded it on a computer in order to prevent virus popup problems I had. After Malware said they were all off the coast, I downloaded Mozilla... and again ran Malware only to find representatives of trogen trogen downloads and spyware infected files. I think that maybe someone messed with your codes. I have since sunk all of this, but thought you should be informed that there might be a hidden problem. Please check it out. Thank you

    If you wish to make such a request, please give more details as what antivirus or scanners, you used, what they find so-called and where exactly.

    Where did you downloaded Firefox from stood at www.mozilla.org or www.mozilla.org/firefox/all

    If you have indeed downloaded Mozilla (and not a random download site) then it is pretty much guaranteed to false positives.

    The installation program of small heel online for Firefox on Windows (served on mozilla.org) exists since Firefox 18.0 and still some antivirus clients gives still false positives about it although if customers have no problem with the complete configuration of www.mozilla.org/firefox/all

    39.0 Firefox has been out since July 2 so much time to find all these issues in all versions of Firefox 39.0 for Windows, Mac OSX and Linux.

    If it was true that Firefox 39.0 for Windows was a Trojan horse, then it would be a very hot topic here, the independent forums.mozillazine.org and tech autour sites even if Mozilla removed affected built quickly.

    I have seen people claiming viruses, Trojans or malware in Firefox releases in 12 years. Not once was as true as it was false positives subsequently fixed by the update definitions antivirus or just something that was detected in the Cache that makes these things harmless while in the Cache.

    The other times it was from users who have malicious software on their system, install Firefox, then did a scan and found should it is come with the installation of Firefox.

    There was a case back in Firebird 0.6 days a local accumulation contributed has been apparently infected (Chinese?, I forgot) that Firefox 1.0 was the first version to have other official other than en-US language.

Maybe you are looking for

  • Plugin Adobe Flash keeps crashing, and or refreshing it or Firefox solves the problem.

    I tried to update Adobe Flash and reload also Firefox but nothing has solved the problem.

  • Satellite Pro A300D - black & white photo via S-video

    Hello I have a Satellite Pro A300D. After months of work perfectly, it now gives me a black & white image on my screen extended through my S Video Jack, although my laptop screen is in color. I checked all the wires and they are fine. Did I miss some

  • Re-cloning a full clone

    I have will get replacement OWC drives because of the chipsets issues and will need to transfer all my data for new readers. Both have multiple partitions, most with clones of the different versions of the OS systems on them. Of course, I can clone t

  • Re: Satellite 2455-S3001 - LCD no longer lights

    I have a Satellite 2455-S3001 part #PS245U-074966. The lcd screen no longer lights upward. I can look at the screen and see the screen works (with a flashlight, I can see images on the screen). I want to solve this problem, but have never worked on d

  • file on the desktop got accidentally renamed

    I have a lot of files on my desk.  I just noticed that one of them accidentally got renamed to 'k' in the past.  I assumed it was an accident when I thought I have received within an application, but rather was rename the file. How to get back its or