Action for commented h:commandButton is running on page load

2.1.7 - jbossorg of the Mojarra
JBoss 7.1.1

It's weird. I have the piece of code that I temporarily put in comment
          <!--h:commandButton
                id="supremeCourtTribunalDecision"
                type="button"
                immediate="true"
                value="Supreme Court Tribunal Decision"
                image="/resources/images/Plus.gif"
                rendered="#{!caseFormStateManager.claimStakingFormState.renderSupremeCourtTribunalDecisionButton(insuranceCase)}" 
                action="#{caseFormStateManager.claimStakingFormState.triggerSupremeCourtTribunalDecisionButton(insuranceCase)}">
                <f:ajax render="claimStakingDetails currentPercentagesMouseOver currentPercentagesMouseOut"/>
          </h:commandButton-->
However, it seems that the action method in the above is that I load the page running.

When I put a breakpoint on the method of action, I have the following stack trace (notice the line says "CommentInstruction.write (FacesContext) line: 77 ')
Daemon Thread [http--0.0.0.0-8081-3] (Suspended (breakpoint at line 36 in ClaimStakingFormState))     
     ClaimStakingFormState.triggerSupremeCourtTribunalDecisionButton(InsuranceCase) line: 36     
     NativeMethodAccessorImpl.invoke0(Method, Object, Object[]) line: not available [native method]     
     NativeMethodAccessorImpl.invoke(Object, Object[]) line: 57     
     DelegatingMethodAccessorImpl.invoke(Object, Object[]) line: 43     
     Method.invoke(Object, Object...) line: 601     
     BeanELResolver.invokeMethod(Method, Object, Object[]) line: 735     
     BeanELResolver.invoke(ELContext, Object, Object, Class<?>[], Object[]) line: 467     
     DemuxCompositeELResolver(CompositeELResolver).invoke(ELContext, Object, Object, Class<?>[], Object[]) line: 246     
     AstValue.getValue(EvaluationContext) line: 159     
     ValueExpressionImpl.getValue(ELContext) line: 189     
     ELText$ELTextVariable.toString(ELContext) line: 217     
     ELText$ELTextComposite.toString(ELContext) line: 157     
     CommentInstruction.write(FacesContext) line: 77     
     UIInstructions.encodeBegin(FacesContext) line: 82     
     UIInstructions(UILeaf).encodeAll(FacesContext) line: 183     
     PanelRenderer(RendererBase).renderChildren(FacesContext, UIComponent) line: 276     
     PanelRenderer.encodeEnd(FacesContext, UIComponent) line: 181     
     UIPanel(UIComponentBase).encodeEnd(FacesContext) line: 875     
     UIPanel(UIComponent).encodeAll(FacesContext) line: 1786     
     UIGraphValidator(UIComponent).encodeAll(FacesContext) line: 1782     
     UIDisablePanelComponent(UIComponent).encodeAll(FacesContext) line: 1782     
     TabRenderer(RendererBase).renderChildren(FacesContext, UIComponent) line: 276     
     TabRenderer(TogglePanelItemRenderer).doEncodeChildren(ResponseWriter, FacesContext, UIComponent) line: 136     
     TabRenderer.doEncodeChildren(ResponseWriter, FacesContext, UIComponent) line: 107     
     TabRenderer(RendererBase).encodeChildren(FacesContext, UIComponent) line: 157     
     UITab(UIComponentBase).encodeChildren(FacesContext) line: 845     
     UITab(UIComponent).encodeAll(FacesContext) line: 1779     
     TabPanelRenderer(RendererBase).renderChildren(FacesContext, UIComponent) line: 276     
     TabPanelRenderer(TogglePanelRenderer).doEncodeChildren(ResponseWriter, FacesContext, UIComponent) line: 127     
     TabPanelRenderer(RendererBase).encodeChildren(FacesContext, UIComponent) line: 157     
     UITabPanel(UIComponentBase).encodeChildren(FacesContext) line: 845     
     UITabPanel(UIComponent).encodeAll(FacesContext) line: 1779     
     PanelRenderer(RendererBase).renderChildren(FacesContext, UIComponent) line: 276     
     PanelRenderer.encodeEnd(FacesContext, UIComponent) line: 181     
     UIPanel(UIComponentBase).encodeEnd(FacesContext) line: 875     
     UIPanel(UIComponent).encodeAll(FacesContext) line: 1786     
     FormRenderer(Renderer).encodeChildren(FacesContext, UIComponent) line: 168     
     HtmlForm(UIComponentBase).encodeChildren(FacesContext) line: 845     
     HtmlForm(UIComponent).encodeAll(FacesContext) line: 1779     
     UIOutput(UIComponent).encodeAll(FacesContext) line: 1782     
     UIViewRoot(UIComponent).encodeAll(FacesContext) line: 1782     
     FaceletViewHandlingStrategy.renderView(FacesContext, UIViewRoot) line: 402     
     MultiViewHandler.renderView(FacesContext, UIViewRoot) line: 125     
     GlobalResourcesViewHandler(ViewHandlerWrapper).renderView(FacesContext, UIViewRoot) line: 288     
     RenderResponsePhase.execute(FacesContext) line: 121     
     RenderResponsePhase(Phase).doPhase(FacesContext, Lifecycle, ListIterator<PhaseListener>) line: 101     
     LifecycleImpl.render(FacesContext) line: 139     
     FacesServlet.service(ServletRequest, ServletResponse) line: 594     
     ApplicationFilterChain.internalDoFilter(ServletRequest, ServletResponse) line: 329     
     ApplicationFilterChain.doFilter(ServletRequest, ServletResponse) line: 248     
     StandardWrapperValve.invoke(Request, Response) line: 275     
     StandardContextValve.invoke(Request, Response) line: 161     
     SecurityContextAssociationValve.invoke(Request, Response) line: 153     
     StandardHostValve.invoke(Request, Response) line: 155     
     ErrorReportValve.invoke(Request, Response) line: 102     
     AccessLogValve.invoke(Request, Response) line: 567     
     StandardEngineValve.invoke(Request, Response) line: 109     
     CoyoteAdapter.service(Request, Response) line: 368     
     Http11Processor.process(Socket) line: 877     
     Http11Protocol$Http11ConnectionHandler.process(Socket) line: 671     
     JIoEndpoint$Worker.run() line: 930     
     Thread.run() line: 722     
The stack trace that above, if I look at the value of CommentInstruction.text.txt, the string output is the h:commandButton which is commented out!

[h:commandButton
                id="supremeCourtTribunalDecision"
                type="button"
                immediate="true"
                value="Supreme Court Tribunal Decision"
                image="/resources/images/Plus.gif"
                rendered=", #{!caseFormStateManager.claimStakingFormState.renderSupremeCourtTribunalDecisionButton(insuranceCase)}, " 
                action=", #{caseFormStateManager.claimStakingFormState.triggerSupremeCourtTribunalDecisionButton(insuranceCase)}, ">
                <f:ajax render="claimStakingDetails currentPercentagesMouseOver currentPercentagesMouseOut"/>
          </h:commandButton]
So I thought:

(1) maybe JBoss still has the old version of the XHTML page where the commandButton control is NOT commented. So I hit the file, always the same. JBoss restarted, still the same.

(2) what happens if I completely remove the commented code? Do that and of course, the above occurs is no longer. Replace the commented code, and it happens again.

(3) what happens if uncomment the next line of the code commented. Has done this, and the above occurs is no longer.

So from the above, there seems to be a bug when it comes dealing with comments

There are two problems here:

(A) the commented code should be ignored.

(B) even if it was not ignored, why wasn't the called method again... because the method should only be called when I click on the button as it is the expression of EL of the attribute action... which I did not click on since page load.

I will try to create a very simple test... case, but if anyone has seen this before?

Published by: jmsjr on February 28, 2013 22:24

Published by: jmsjr on February 28, 2013 22:26

Published by: jmsjr on February 28, 2013 22:27

That's how behave the facelets, they ignore comments when building the tree by default JSF components.
To blow up the comments add

 
        facelets.SKIP_COMMENTS
        true
    

to your web.xml file. You can also use the tag to comments. I always suggest setting the facelets. Parameter SKIP_COMMENTS without worrying.

Tags: Java

Similar Questions

  • How to make a request for Validation on the field of comments in BPM Worklist task details Page

    Hello
    I am newbie to SOA 11 g.

    I use SOA 11 g and Jdev 11.1.1.3 for development. I created a human with two results (APPROVE, REJECT) and task able to display the page the task details in the BPM list. I have the comments of default section that comes by 'Auto generation of ADF Taskflow' in the Task Details page. This comments section will display the comments of several users who have access to the task. I want to add validation for the field of comments as below-

    (1) to DISMISS the action, we must check whether or not the APPROVER had provided the reason for REJECTION in the comments field. If this isn't the case, we need to display a popup asking him to provide observations of REJECTION.
    (2) on the action to APPROVE, no need to check for comments, so no validation is necessary.

    Can someone give me some ideas how it is possible.

    Thank you
    Udaya Neeliahgari

    Hello
    Try the following...
    In the composite open y'r process bpel... and then to expand the human task... you will notice a task entitled just before the initiateTask run the following two copy operation in the task of AssignTaskAttributes within the scope of the human task.

    IMP Note: The variable is the variable initiateTaskInput of the human task field. Don't assign not on on the global variable

    1 assign a string value "REJECT" in the expression (assuming that you do so that the result of REJECTION) and assign it to the variable

    /TaskService:initiateTask / task: task / mission: systemAttributes / task: preActionUserSteps / task: preActionUserStep / task: results

    2 assign the string value "PROVIDE_COMMENTS" in the expression and assign it to the variable

    /TaskService:initiateTask / task: task / mission: systemAttributes / task: preActionUserSteps / task: preActionUserStep / task: userStep

    view the .bpel file source y'r and make sure that you see something like the following:




    Query = "" / taskservice:initiateTask / task: task / task: systemAttributes / task: preActionUserSteps / task: preActionUserStep / task: result "/ >"




    Query = "" / taskservice:initiateTask / task: task / task: systemAttributes / task: preActionUserSteps / task: preActionUserStep / task: userStep "/ >"

    Just deploy the app... and when you try to dismiss... it should appear the message.

    concerning
    Raja

  • Control action CommandButton execution while the Page Refresh

    Hello


    I'm developing an Application in the ADF. I have a method in Backing Bean. I associate this action property of the CommandButton control method in jspx Page.

    < af:commandButton text = "Submit".
    action = "#{backing_blockingRowWhileLoading.doNotExecuteOnPageRefresh} '"
    Binding = "#{backing_blockingRowWhileLoading.commandButton1} '"
    ID = "commandButton1" / >

    This is the code in the bean support

    public String doNotExecuteOnPageRefresh()
    {
    System.out.println ("loop of publication (postback)");
    Returns a null value.
    }

    When I'm clicking the button, the method is running of command and statement is being printed on the console. It is very good.

    The problem is when I am pressing F5 or refresh the browser method is executed once more.

    Can I write the method in bean support so that it is executed only when the button is clicked. It doesn't have to be executed when the page is refreshed with the button F5 or Refresh the browser.

    I tried with the statement below. He also failed.
    If (!.) {AdfFacesContext.getCurrentInstance () .isPostback ())}

    Can someone help me please to solve this problem. It is very urgent for me. Thanks in advance.

    Thank you
    Ravi kumar.

    Hello

    What is expected due to the postbacks, add a redirect tag in the navigation rule in faces - config.xml for the given navigation case.
    If you use workflows, set redirect to true on the view property.

    Jean Lou

  • Variable setting wrong with dynamic action for the region of report

    Hello

    I can't setting a variable. Here are the details of connection:

    Connection information:

    TCARMY workspace

    User Apex_dev

    Password dev_apex

    Application 88542

    Page 11

    If you run the page 11 and just click on submit, there will be two rows. If you click on one, the modal region won't say no data found. If you click on the button submit once again, the value is passed if you click on it now, the results arrive. If you click on the second row, it still shows the value of the first row. If you click on submit again after clicking on the second line, then it is displayed correctly. It seems that the value is set to submit it. I want this to work when clicked, and then for the sql to run with the value that is in this variable when clicks on the element. There is a bit of javascript page level and dynamic action. Something is not right to the installation.

    The modal window should popup and run the sql at that time with the variable data and view the two columns. And if the user clicks on the second row, it would display the data in the row.


    Thank you

    Tim

    TC-army wrote:

    If you run the page 11 and just click on submit, there will be two rows. If you click on one, the modal region won't say no data found. If you click on the button submit once again, the value is passed if you click on it now, the results arrive. If you click on the second row, it still shows the value of the first row. If you click on submit again after clicking on the second line, then it is displayed correctly. It seems that the value is set to submit it. I want this to work when clicked, and then for the sql to run with the value that is in this variable when clicks on the element. There is a bit of javascript page level and dynamic action. Something is not right to the installation.

    What has not been set up right, it's that the element of P11_NAICNUMD parameter was not specified in the source attribute of Page to go to the region, modal Discount. The current value in the browser page, therefore, was not defined in session state when the report has been updated by the dynamic action. When

  • Popup error when using the AJAX or update Action for the region or a State

    Hello

    I had a problem with an application that I developed and I was banging my head against the wall with this for some time without success. Several pages in my application rely on the use of AJAX to refresh a region on the page with the updated data, running every 5 seconds. I have the following code in the foot in my region:

    var refresh_region = function (region_in) {
        try {
            jQuery(region_in).trigger('apexrefresh');
        } catch (e) {
            //Suppress error messages
        } finally {
            setTimeout(function() {refresh_region(region_in)}, 5000);
        }
    }
    refresh_region('##REGION_STATIC_ID#');
    
    
    

    What is happening is that I often have a popup with the title "Message from Web page:" and one of the descriptions following error (with the last being the most common):

    • : Error - HTTP Version not supported
    • Error: error - unknown

    The problem is that this page is used on the kiosks without keyboard, and once the error popup is displayed, the page continues to answer and user interaction to click on the Ok"" button. Another question, which is even more frustrating, is that these windows will accumulate above the other nearly one hundred sometimes profoundly, to the point where, sometimes, I need to force, exit the browser or restart the kiosk. There are also cases where the entire application stops responding and none of the pages will load. The only way to solve this problem is to have my DBA restart Glassfish. He went through some of the papers, but he sees nothing specific that helps him understand why he keeps to himself, but he believes that all these popups eat connections until the server runs.

    This has been a recurring topic since the app went live and I had hoped that with the help of a block try {} catch {} would prevent these popups errors but no luck. I also made a copy of the page today and refresh moved dynamic Action using the timer plugin but the popup always appears. I am following up to see if it happens more often than the AJAX approach.

    In the end, there are two issues here:

    1. What causes the error in the first place?
    2. How can I prevent the error popup windows until I can find #1

    I have tried everything I can find online to disable popups, all of this without a bit of luck:

    • Using try {} catch {}
    • Disable script debugging in Internet Explorer
    • Uncheck 'display a notification of every script error '.
    • Catch the window.onerror event

    Does anyone have any suggestions on how I can avoid these popups?

    I have a copy of the application on apex.oracle.com:

    • Workspace: SCCC_TEST
    • User/Pass: TEST/test
    • Page: 5

    Thank you!

    Once I started to think the ajax Manager that I started, I was wondering if ajax would actually raise an error at all, and it is not just the success of shooting when but throwing an error because it cannot handle the return (error page html for example). I'm not sure.

    You can try to use this code, which will replace the current call and will call _Appel with your own parameters. _Appel is a private member is not accessible so it's probably the best alternative. Not really a hack in my book. The structure is in place, then why not.

    //preserve original function
    var asw_orig = apex.server.widget;
    //override existing function
    apex.server.widget = function(pName, pData, pOptions){
      var lOpts = pOptions;
      //set the error handler function
      lOpts.error = function(){alert("this is my error handler function");};
      //pass along the variables to the original call
      asw_orig(pName, pData, lOpts);
    };
    

    I wondered if maybe the session may have expired at a certain time and therefor, you found these errors, because the update is not aware of this and therefore makes invalid calls. Just throw something out there.

  • How to associate a host file extension with a request for comments in Unity mode on a Windows host?

    Hi all

    I have a computer with VMware Player 3.1.1 Windows host computer. The unit mode works very well with Windows and Linux VMs.

    I would like to associate a file extension in my host for an application in a guest such as when I try to open these files, it starts the application in the comments. Merge, is that on a MAC, I read that it was possible with a Linux host, but I can't find anything on a Windows host.

    Is it possible to do this?

    Thank you for all.

    Concerning

    Franck

    This is one officially supported by characteristic on the merger only. It certainly doesn't work on Windows hosts. While you can run an application in the comments, you can't run an application and give him additional command line parameters.

  • Installation of the Actions for elements on a Mac

    Anyone know why I have no "Adobe" folder in folder 'Application Support' under library on my hardrive Mac while trying to download actions for 10 items?

    In all app store version is contained in the package of the application itself, requires the app apple store guidelines. The problem is that the app store version does not seem to worry a lot of mediadatabase.db3 at all. PES 9, the version of app store never regenerate mediaDatabase.db3 and runs happily without him. PES 10, sometimes it works. I would also delete thumbsDatabase.db3, too.

    If you click with the right button on the application itself and choose the contents of the package see the > content, you'll find the stuff that is normally found in library > application support in a folder there called Application Data. You will get an error message that it cannot be changed when you try to put the actions in there. Click on authenticate and give it your OS X account password and it will allow you to add them.

    However, you find that you are limited to carry out activities in the drive of measures.

  • "To view this page, Firefox must send information that will repeat any action (for example, a search or order confirmation) that was carried out earlier."

    To view this page, Firefox must send information that will repeat any action (for example, a search or order confirmation) that was carried out earlier. Then I have to click on return or cancel. Then I have to click on return or cancel.

    How can I fix this automatically return?
    Please let me know!

    It is not possible.

    Do you use the back button to return to a previous page?

    You receive an alert to send POST data if you return to a page or refresh a page that was requested in advance from the server by submitting form via a (hidden) MESSAGE form data.
    Firefox can only make sure to get the same page send this POST form.
    Firefox doesn't know what it means shape data, so Firefox asks for confirmation before sending the form data so action can you take to repeat an action and buy another article or post a message once.
    One way to prevent this pop-up on the removal of the POST data is not to use the back button, but to open the links on a page that is requested from a server by sending a form with the date of the POST in a new tab (window) with a middle click or hold down the CTRL key and click the link.
    Then you can close the tab or window to go back.

  • Time for a while loop to run once

    Hello guys,.

    I want to measure the time for a while loop to run once. There is a piece of code raised. So I just created a simple VI to try, please let me know which is the right way to do it?

    And I wondered, when I run the VI without highlighting the execution, he wouldn't give me a number, maybe it's because the code is simple and really fast? I have to highlight all the time?

    Thank you

    Not quite right.  Both get primitive value time will run at the same time.  use an image sequence to force the order of execution, as shown.  I also brought in the relitve of accuracy seconds vi of VI. LIB\utilities because it depends on the clock of the system rather than the mSec timer accuracy.

  • Whenever I try to update, I get the message "windows Explorer has stopped working". It then seeks a solution, restarts, and immediately stops again. No error code just a constant circle. This has happened for days. I am running windows 7.

    Whenever I try to update, I get the message "windows Explorer has stopped working".  It then seeks a solution, restarts, and immediately stops again. No error, just a constant circle of shutdown and startup code.  This has happened for days.  I am running windows 7.

    I think that norton or mcafee may have been preinstalled as trial versions, but I've never actually used them. Unfortunately I can't use the windows Explorer, so I can't check if they are still there.

    We will cover all the possibilities.

    1. download each of the tools for deletion below, save it to your desktop:

    Norton Removal Tool: ftp://ftp.symantec.com/public/english_us_canada/removal_tools/Norton_Removal_Tool.exe

    McAfee removal tool: http://download.mcafee.com/products/licensed/cust_support_patches/MCPR.exe

    2. close all open applications (that is, anything with an icon on the taskbar).

    3. After completing some you have a copy of your handy product key, uninstall all software (including LiveUpdate and Add-ons of Norton) Norton through Control Panel | Programs | Uninstall a program (or Control Panel |) Programs and features, if you are using the classic view)

    IMPORTANT! => Activate the Windows Firewall immediately after the restart.

    IMPORTANT! => Now you're "working without a net": no to ANYTHING else online (e.g., navigation, reading e-mail, chat) until you have completed the steps #4, #5 and #6 below!

    4. right click on one of the files that you saved in #1 above and select run as administrator to run the utility. DO TAP not your keyboard until the race ends, then restart.

    5. Repeat step #4 for another removal tool.

    Tips:

    -Online use another computer to download the removal tool, if necessary, then transfer it to the computer via CD, DVD, or a USB brand new, never been used (flash drive), or a summer freshly updated in shape.

    -Online start the problem in Mode safe computer, if necessary, proceed as above.

    -Online after completing all of the above, uninstall AVG Free & reboot. Now do a new installation of AVG Free 9.0, this time select the CUSTOM installation option and do NOT install (uncheck) Linkscanner Search-Shield, Active Surf-Shield, security or the email of crawl components toolbar.

    Why you don't need your anti-virus to scan your email
         http://thundercloud.NET/infoave/tutorials/email-scanning/index.htm

    -Online download/run system update before running Windows Update again: http://support.microsoft.com/kb/947821

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • need drivers pci for toshiba satellite M45-S2653 running windows xp pro 2002 SP2

    need drivers pci for toshiba satellite M45-S2653 running windows xp pro 2002 SP2

    Find it here:

    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp?NAV=product%20Support

    Good luck.

  • How can I download a MP4 codec for media player, I am running windows XP Home Edition. PLEASE?

    How can I download a MP4 codec for media player, I am running windows XP Home Edition. PLEASE?

    How can I download a MP4 codec for media player, I am running windows XP Home Edition. PLEASE?

    ===========================================
    Long answer... good luck...

    The following decoder could be your problem but it's not freeware.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    3ivx decoder
    http://store.3ivx.com/3ivxStore/product_details.php?ID=11

    Anyway... This article is maybe worth a visit:

    Windows Media Player multimedia file formats (316992)
    http://support.Microsoft.com/kb/316992/en-us
    > scroll waaay to MPEG-4 (.mp4)

    Media players free alternative that should play the files:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    VLC Media Player (32-bit Version)
    http://www.filehippo.com/download_vlc_32/
    (works on XP, Vista, 7, 8)
    (the name of the file to download is: vlc - 2.0.5 - win32.exe)

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    VLC Media Player (64-bit Version)
    http://www.filehippo.com/download_vlc_64/
    (works on XP, Vista, 7, 8)
    (the name of the file to download is: vlc - 2.0.5 - win64.exe)

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Media Player Classic Home Cinema
    http://www.videohelp.com/tools/Media-Player-Classic-home-cinema
    (Win XP SP3 3, Vista / 7 / 8 (with a few questions about 8).)
    The two 32-bit (x 86) and 64-bit (x 64)) (name of file
    downloading is: "mplayerc_homecinema.1.6.5.6366.x86.exe)."
    (start with left click - Download (direct link)

    And it might be worth a try to download
    and install 'one' of the following free codec packs:

    * Proceed at your own risk *.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    K - Lite Codec Pack (full)
    http://www.filehippo.com/download_klite_codec_pack/
    (Windows XP - Vista - 7)

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Vista Codec Package
    http://www.MajorGeeks.com/download.php?Det=5326
    (Windows XP / Vista)

    Personally I would remove the compatibility
    questions and convert the files to the WMV MP4
    format. One of the reasons being... If the files are shared
    with anyone... they will encounter the same problems.

    There are many converters to retail and freeware
    available on the net... the following link is a
    for example.

    Proceed at your own risk *.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Freemake Free Video Converter (freeware)
    http://www.Freemake.com/free_video_converter/
    (Windows XP / Vista / 7)
    (* Read * all * the installation screens... it)
    may be a few items you want to unmark *)

  • I don't remember my password for my dell latitude d420 running on windows xp

    Original title: password recovery

    I don't remember my password for my dell latitude d420 running on windows xp, I try safe mode but still can't connect mode and I do not have a disk

    Hello

    See the following article: Microsoft's strategy concerning lost or forgotten passwords

  • Requirements for the Labview 8.6 run-time engine

    Hello

    are there system requirements for the LabVIEW 8.6 run-time engine? for example, same system requirements for LabVIEW 8.6? Internet Explorer 5 is perfect? or Internet Explorer version 6.0 or later is good? It works for Firefox on a Linux Athena mechine?

    Thank you

    Cynitha

    The system requirements can be found in the Release Notes. Pages 2 and 3 indicate the specific requirements for the Run-Time Engine by platform.

  • API for open action for the listview element menu.

    Hello!

    Is there an API to open the action menu with elements of action for CustomListItem?

    A possible solution is to create a custom menu like ActionMenu standard with managers and signals defined by the user.

    Anybody know standard way?

    There is no way to open ContectMenu programmatically, but one of the solutions to use the selection of the element (with listview onTriggered slot) and ActionMenu.

Maybe you are looking for

  • I found this problem when I installed itunes

    Someone knows how to fix this? This message will appear 4 ~ 5 times then the installation work. My system is Windows 10. Thank you.

  • Firefox Theme is stuck in case of default

    My firefox got accidentally covered in Yahoo toolbars and others from accidental installation of software. After I turn off and removed everything, Firefox has stopped showing my themes and did not show any theme and more by default. I have reset to

  • ThinkPad X 230-bet to UPGRADE TO W8

    Hi everyone, pls I just got some thinkpad used weeks x 230 which has w7 professional. I think an upgrade to w8.1 but do not know what to expect after the upgrade. can someone advise? thnx all the...

  • audio driver download error

    My wife accidentally deleted our audio driver. When trying to reinstall or update, we get the blue screen of death. Any suggestions?

  • PLDS DVD +-RW DS - 8A3S do not write

    I have a Dell 1545 with PLDS DVD +-RW DS - 8A3S.  I am running Win7 with all updates.  I can play CDs and DVDs fine, but I can't write to CD or DVD.  Device Manager it lists as "CD-ROM" and said that the current driver (Microsoft - version 6.1.7601.1