The af:progressIndicator wont fire the Action or ActionListener

Hi,
I got a problem with af:progressIndicator component..
After it complete the progress/processing 100%..
I put the action + actionListener but it dont fire it, even i debug in JDev.. It's look like it dont call the function in backingBean for action/actionListener,
so how....
TQ..

Hi,
did you associate the action listener with a command link or a command button ? If yes, does it workwithout the progress indicator ?
Frank

Similar Messages

  • UICommand action and actionListener - invoke in different phases

    Hi,
    I am trying to get the action and actionListener methods of a command button invoked in different phases. When the button is pressed I would like the actionListener to be invoked immediately, but the action method only in the "invoke applications phase", unless the form validation failed.
    Setting immediate to "true" doesn't work, as I can't get the action method to be queued for later processing. I also can't make them both actionListeners as the action method controls navigation.
    Any way round this?
    Thanks!

    Action = Executed in the invoke application phase. Runs a method in a bean that returns a String object. The String is used by the navigation system to determine which page to render next. The rules for this are set up in the faces-config.xml file, in the navigation-rule sections.
    ActionListener = Executed in the invoke application phase. Is triggered when the action event occurs for the component the listener is attached too. This listener can perform miscellaneous actions required when the button is clicked, but does not return a String that affects the navigation.
    What order do they get called? Try this out!
    http://www.jsftutorials.net/faces-config/phaseTracker.html
    It'll help you understand the JSF lifecycle. Which is VERY important, especially when those weird errors start occurring (or JSF seems to be ignoring your commands).
    CowKing

  • How to set the action page using fusebox

    hi everybody i have a little problem here. i have a page that
    has a pop
    up. when u click go in the pop up it will reload and display
    additional
    table below the previous table. the problem is i have no idea
    on how to
    make this work, can somebody help me?
    <INPUT style="width: 50px;" value="GO" name="go"
    type="button"
    class="myButton" onClick="javascript: getItem();" >
    i am not not sure of the action
    (document.theForm.action='<cfoutput>"#myself##xfa.pop_quotelist#"</cfoutput>+"&custcode=c ustcode')
    located at the end of my script thats my problem it wont
    work: the error
    is " No top level found" please help me....
    and here is my script for the pop up:
    unction getItem(){
    if (!isValidString(document.theForm.customercode,
    'Customercode')){return false;}
    if (!isValidString(document.theForm.currency,
    'Currency')){return false;}
    if (!isValidString(document.theForm.Q_No1, 'Quotation
    Number')){return
    false;}
    var custcode = theForm.customercode.value;
    var qt='test';
    var qt_field='Q_No';
    var qt_all = '';
    var qt_all_value='';
    for(i=1;i<=15;i++){
    myqt_field = qt_field+i;
    qt='&qt'+i+'='+document.theForm.elements[myqt_field].value;
    qt_all = qt_all+qt;
    if(document.theForm.elements[myqt_field].value!=''){
    if(qt_all_value ==''){
    qt_all_value =
    qt_all_value+document.theForm.elements[myqt_field].value;
    else{
    qt_all_value =
    qt_all_value+','+document.theForm.elements[myqt_field].value;
    alert(qt_all_value);
    <!---document.theForm.action='.../pop_quotationlist.cfm?customercode='+custcode+qt_all;-- ->
    document.theForm.action='<cfoutput>"#myself##xfa.pop_quotelist#"</cfoutput>+"&custcode=cus tcode'
    document.theForm.submit();

    Hello,
    I am working on a multi action controller a select controller and update controller. Select controller is working, however when i click on update from my list page (rendered) by selectController nothing happens in a portlet. Code for list.jsp is below. Can you please suggest some way to debug this.
    Thanks in advance,
    Prasad.
    list.jsp
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
    <%@ taglib uri = "http://java.sun.com/portlet_2_0" prefix="portlet"%>
    <%@ page contentType="text/html" isELIgnored="false" %>
    <portlet:defineObjects/>
    <h3>Contact List</h3>
    <portlet:renderURL var="insertAction">
    <portlet:param name="action" value="insert"/>
    </portlet:renderURL>
    <table border="1" cellpadding="4">
    <tr>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    <td></td>
    <td>Add Contact</td>
    </tr>
    <tr>
    <th>Contact Id</th>
    <th>First Name</th>
    <th>Last Name</th>
    <th>Email</th>
    <th>Phone</th>
    </tr>
    <c:forEach items="${contactList}" var="contact">
    <tr>
    <td></portlet:renderURL>
    '><c:out value="${contact.contactId}"/>
    </td>
    <td><c:out value="${contact.firstName}"/></td>
    <td><c:out value="${contact.lastName}"/></td>
    <td><c:out value="${contact.email}"/></td>
    <td><c:out value="${contact.phoneNumber}"/></td>
    <td>
    </portlet:actionURL>
    '>Remove
    </td>
    </tr>
    </c:forEach>
    </table>

  • How do I create an action to save as, but into a different folder than the one I used to create the action?

    I am having an issue with my action being created to save under the same folder that my action was created with.  For instance, I opened an image, recorded the action, then I went to a different folder to play the action, but it saves to the previous folder.  How do I add some way to change the folder I want my pics to save to?

    If you want to give Scripting a try paste the following text into a new file in ExtendScript Toolkit and save it as a jsx-file into Photoshop’s Presets/Scripts-folder.
    // saves jpg into same folder;
    // be advised: this  overwrites existing jpgs of the same name without prompting.
    // 2010, use it at your own risk;
    #target photoshop;
    if (app.documents.length > 0) {
    var thedoc = app.activeDocument;
    // getting the name and location;
    var docName = thedoc.name;
    if (docName.indexOf(".") != -1) {var basename = docName.match(/(.*)\.[^\.]+$/)[1]}
    else {var basename = docName};
    // getting the location, if unsaved save to desktop;
    try {var docPath = thedoc.path}
    catch (e) {var docPath = "~/Desktop"};
    // jpg options;
    var jpegOptions = new JPEGSaveOptions();
    jpegOptions.quality = 12;
    jpegOptions.embedColorProfile = true;
    jpegOptions.matte = MatteType.NONE;
    //save jpg as a copy:
    thedoc.saveAs((new File(docPath+'/'+basename+'.jpg')),jpegOptions,true);
    //that’s it; thanks to xbytor;

  • How do I get more effects in my action box?  I am only showing a few, like BOTTOM BORDERS, LOSE WEIGHT AND SPECIAL EFFECTS. That is all. The turotials I've checked into all show a long list of effects in the actions box. If anyone could help, I appreciate

    How do I get more effects in my action box? I am only showing a few, like "Bottom Borders, Losing Weight, Resize and Crop, and Special Effects. And they do not list but a few effects. When I have watched the tutorials, they are showing a long list of effects in the action box. (with a side space bar)  I do not.  When I have clicked on the little arrow at top, and clicked "Load Actions", a box comes up, but it is blank,saying "no items match your search".  I'm lost!  If someone could help, it would be much appreciated!  I would like to start using this.
    Thank you. 

    Apple Computer Customer Relations:
    1-512-674-2500

  • Cannot delete exe files - The action can't be completed because the file is open in Windows Explorer

    We have received 3 new computers with Windows 8.1. All of us 3 have the same problem: we cannot delete exe files with message "The action can't be completed because the file is open in Windows Explorer"
    For example, I download skypeinstall.exe on desktop, install the program correctly and then try to delete the file: file is in use by Windows Explorer, cannot be delete.
    We reboot computer, we are able to delete the file. But, if I restore the file from the recycle bin on the desktop, I cannot delete it again until I reboot the PC. I used ProcessExplorer to see what is locking it and I can see 5 instances of explorer.exe
    locking the file.
    I can always reproduce the same way:
    1-Reboot
    2-Delete exe file
    3-Restore file
    4-Delete stop working and 5 explorer.exe handle are locking it.
    I have tried the following so far after reading multiple threads:
    - De-activating Windows Search service
    - Activating User Experience service
    - Deleting from command prompt (no success)
    - In folder options: inactivate display icon on thumbnail and activate always display icons, never thumbnail
    - Changing folder view (contents, detail, small icons...)
    - Using Lock Hunter - not working until reboot
    None of these worked.
    We all have Windows 8.1 with Crucial SSD drive, could the problem be linked with the SSD drive incompatibility?
    Any help would be appreciated.

    Hi,
    Please try to make a clean boot for your system, then check if this problem resolved.
    Clean Boot: http://support.microsoft.com/kb/929135
    If problem persists, try to open Resource Monitor to check handle of Explorer.exe, if there any exception, end them for test.
    Roger Lu
    TechNet Community Support

  • The action could not be completed because of a conflict with the original item. The conflict may have occurred when an existing item was updated on another computer or device. Open the item again and try making your changes. If the problem continues, cont

    I have a user on an iMac 10.6 connected to our domain.  She uses Outlook web access for email on our exchange server.  Last week she received the following message which is randomly preventing her from sending emails.  She claims no attachment was involved in the original email when this all started.  I have not been able to look at her account as she is out of the office but maybe someone else dealt with this issue.  I realize this may not be Mac related but thought I'd give it a try.  She did say it occurred once over two days while working on a PC but it continued over the past weekend.
    If an internal user tries to send a message with infected attachment using Outlook Web Access, it may report the following error message: The action could not be completed because of a conflict with the original item. The conflict may have occurred when an existing item was updated on another computer or device. Open the item again and try making your changes. If the problem continues, contact technical support for your organization.
    This is because F-Secure Anti-Virus for Microsoft Exchange has detected a virus in the attachment. If the user tries to send the message again, the message will be sent but without the attachment. At the same time a blank message with an attachment named "Attachment_information.txt" will remain in the user's Drafts folder. The "Attachment_information.txt" will contain information about the virus detected in the message.

    PS - have found other posts indicating that clips smaller than 2s or sometimes 5s, or "short files" can cause this. Modern style editing often uses short takes ! Good grief I cannot believe Apple. Well I deleted a half a dozen short sections and can export, but now of course the video is a ruined piiece of junk and I need to re-do the whole thing, the sound etc. which is basically taking as much time as the original. And each time I re-do it I risk again this lovely error -50 and again trying to figure out what thing bugs it via trial and error instead of a REASONABLE ERROR MESSAGE POINTING TO THE CLIP IT CAN'T PROCESS. What a mess. I HATE this iMovie application - full of BUGS BUGS BUGS which Apple will not fix obviously, since I had this product for a few years and see just hundreds of hits on Google about this error with disappointed users. Such junk I cannot believe I paid money for it and Apple does not support it with fixes !!!
    If anyone knows of a GOOD reasonably priced video editing program NOT from APPLE I am still looking for suggestions. I want to do more video in future, but obviously NOT with iMovie !!!

  • I am trying to create a button in flash that will display 4 separate images at the same time when clicked.  I can't get the images to stay on when I take the mouse of the button.  I need the actions script code to make this happen.

    I am trying to create a button in flash that will allow the user to click on the button and 4 separate images show up at the same time.  I can get the images to appear when I click the button but they will not stay on the screen.  I need to know what code I use to make the images stay once the button is clicked, then I need to know exactly where I place that code.  It does not appear to be possible to add the action code to the buttons layer since each time I add a new layer I just get another "up" "over" "down" and "hit" line.
    Thank you in advance
    AP

    It is not clear how you are trying to realize this from your description.  If you are trying to create this within a button symbol it will not work.  Explain your approach and if there is code involved, show what you have so far.

  • Follow up task without using the action profile

    Hi,
    Is it possible to create the follow up task without using the action profile? If so, please let me know how we can do that?
    as per the requirements, i have to the custom coding that will automatically create follow-on task triggered by status change on the all the transaction type. Please guide me how can we do that.
    Task details (task id, description), I'm reading it from the custom table.
    Thanks for your help.
    Regards,
    Vaibhav

    Thanks Naresh for the response.
    Not sure if I can use the CRMV_EVENT. Even I'm not aware how to use that. Let me tell what i am doing in the logic.
    - implementing the logic in the badi order_save (method - CHECK_BEFORE_SAVE)
    - get the header and item details using the FM CRM_ORDER_READ.
    - get the status of header / item from the output of CRM_ORDER_READ.
    - compare the status with the custom table (having info of hearder type, item type, status, tast id, task description etc)
    - if status is different, create the task using the details from the custom table.
    now i want to write the logic to implement the last step. Do we have any standard FM where I can pass the task ID and it will create the task? Please help.

  • How having a where-clause in a report without affecting the actions button

    Hi,
    let's suppose I have a simple report built on a table where I have a date field.
    If I want the report to get the records of the table when you login ao as to have only those of the current month, I could modify the region source in the page rendering of the report in this way:
    select
    “COLUMN1"
    "COLUMN2",
    "COLUMN3"
    from   "MYTABLE"
    where to_char(COLUMN2,'mm-yyyy') = to_char(trunc(sysdate),'mm-yyyy')
    order by COLUMN2
    The problem is that if I try to choose another range of date on the application by using the filter of the Actions button, I get no records and I suppose that is 'cause the report applies the filter to the query where I have
    where to_char(COLUMN2,'mm-yyyy') = to_char(trunc(sysdate),'mm-yyyy')
    and so I doesn't work.
    How should I do?
    Thanks!

    try this...
    select  
    “COLUMN1" 
    "to_char(COLUMN2,'mm-yyyy') ", 
    "COLUMN3" 
    from   "MYTABLE"  
    where COLUMN2 between to_char(COLUMN2,'mm-yyyy') and  to_char(trunc(sysdate),'mm-yyyy') 
    order by COLUMN2

  • The action cannot be completed. the connection to microsoft exchange is unavailable

    Hi dear.
    We have exchange 2013 and we want auto configure outlook 2007,2010 and 2013. In first time when we are setup exchange 2013 we can auto
     configure outlook. But I don’t know now we cannot configure outlook. I think when we make some change in exchange certificate ( created by exchange in first time ) and after that we cannot configure outlook. Just we can set up pop3 and imap
    for outlook. Now we have outlook with pop3 and outlook web app ( OWA ) and we don’t have problem with them, but we want our client see the all contact list in outlook. When we want configure outlook with Microsoft exchange server we get the error “ 
    the action cannot be completed. the connection to Microsoft exchange is unavailable “.please help me. I don’t know how I solve the problem.

    hi.
    ok. this is the out put of autodiscover url in address bar :
    ""  <?xml
    version="1.0" encoding="utf-8" ?>
    - <Autodiscover
    xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
    - <Response>
    - <Error Time="10:30:23.5154338"
    Id="3405091169">
      <ErrorCode>600</ErrorCode>
      <Message>Invalid Request</Message>
      <DebugData
    />
      </Error>
      </Response>
     </Autodiscover> ""
    thanks for your help.
    If it returns error code 600, your autodiscover service should be accessible in Exchange server. Please restart Microsoft Exchange Address Book service in Exchange server, then create a new Outlook profile in Outlook to have a try.

  • The action cannot be completed. The connection to Microsoft Exchange is unavailable. outlook must be online or connected to complete this action

    I have outlook 2013 and am trying to add an exchange 2010 multi-tenant account.
    I have created a new profile.
    I select Manual setup or additional server types
    Then select Microsoft Exchange Server or compatible service
    I enter the server settings. But the following error is returned when i click check name
    "The action cannot be completed. The connection to Microsoft Exchange is unavailable. outlook must be online or connected to complete this action"
    I have tried selecting more settings, selecting security, and then selecting the option:- Always propt for logon credentials.
    But the same error is still returned
    I tried deselecting the option Encrypt data between Microsoft outlook and Microsoft Exchange
    But still continue to get the same error.
    Reading from other forums I have tried restarting the Microsoft Exchange Address book service under services on the exchange server.
    But this did not help either
    i am able to access the email accout via outlook web access. I am also able to add the email account to my iphone with the server details and it adds fine onto my iphone but cannot add it to outlook 2013.
    any help would be appreciated.
    Thanks
    Rehan Miah

    Hi,
    This issue may occur when the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders registry key does not contain all of the required data. Specifically, these problems occur if the
    AppData string value is missing from this registry key.
    NOTE: The \User Shell Folders key also contains a string value called
    Local AppDatawhich is different from the value called AppData. The value that causes this problem (if it is missing) is the
    AppData value.
    To resolve this issue, import the User Shell Folders registry key from a working Windows User Profile.
    For more information, please refer:
    http://support.microsoft.com/kb/2264398
    Hope this helps.
    Best Regards,
    Steve Fan
    TechNet Community Support
    I have looked in the registry and Appdata is not missing it has the following value "%USERPROFILE%\AppData\Roaming" also Local AppData is there with the following value "%USERPROFILE%\AppData\Local" i do not have a working machine to import the user shell
    folders registry key so any other advice would be useful.
    thanks
    Rehan Miah
    In order to test what you suggested i created a windows 7 virtual machine installed outlook 2003 however i also get the error on the virtual machine that i have created.
    any further suggestions would be a great help.

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • How to delete all Action Sets in the Actions Palette

    I'm in need of a piece of JavaScript code that will delete all the Action Sets in the Actions Palette. I've scripted the logic to load the appropriate Action Set once needed but I don't want to end up with duplicates at the end of processing the batch.
    Any help would be most appreciated.
    TIA, Scott

    > Could someone clue me in; I'm lost?
    getActionSets = function() {
    var i = 1;
    var sets = [];
    while (true) {
    var ref = new ActionReference();
    ref.putIndex(cTID("ASet"), i);
    var desc;
    var lvl = $.level;
    $.level = 0;
    try {
    desc = executeActionGet(ref);
    } catch (e) {
    break; // all done
    } finally {
    $.level = lvl;
    if (desc.hasKey(cTID("Nm "))) {
    var set = {};
    set.index = i;
    set.name = desc.getString(cTID("Nm "));
    set.toString = function() { return this.name; };
    set.count = desc.getInteger(cTID("NmbC"));
    set.actions = [];
    for (var j = 1; j <= set.count; j++) {
    var ref = new ActionReference();
    ref.putIndex(cTID('Actn'), j);
    ref.putIndex(cTID('ASet'), set.index);
    var adesc = executeActionGet(ref);
    var actName = adesc.getString(cTID('Nm '));
    set.actions.push(actName);
    sets.push(set);
    i++;
    return sets;

  • How to use the "Actions" in Photoshop Elements 11

    I am wanting to use the "Actions" in Photoshop Elements 11.  But when I get the actions box up, it is only showing a small list of effects to use.  The tutorials I have checked into all show a very long list of actions. When I click on the little arrow and click on "load actions", I am getting nothing. Everything is blank.  It says "No items match your search."  Please help! 

    To use the existing actions, try the following:
    1. Open one of the Action Sets, in this example Special Effects is the Action Set, by pressing the small arrow beside the set name.
    2. Then click on the name of the Action, in this example Faded Ink is the Action name.
    3. Then press the Play button to run the action.

Maybe you are looking for

  • I can't install Visual Studio 2013 Ultimate in my Windows 8.1 Pro

    Good Day Everyone! I have downloaded an ISO file of VS2013 installer from Microsoft Download Center. I have checked the requirements and I have what it needs to be installed. But when I mount the ISO disc image, an error message appear.  G:\ Applicat

  • Dv7-1273cl won't power-on

    Warranty still good until 2011-03-31, bought at Costco. I press the power button and the lights come on for about 1-2 seconds and then it dies. Tried taking the battery out and putting back in, no luck. Won't power-on at all w/o the battery in (no li

  • Strange FCIP Issue (# of connections)

    Is anyone aware of the number of FCIP connections you can have on an MDS9513 with Sup (Gen2) 3.2(2c) 14+2 (Gen1) 3.2(2c) 18+4 (Gen2) 3.2(2c) We are in the process of replacing the 14+2 with the 18+4 - However it would seem I have encountered a strang

  • Startup disc full message

    I have an iMac G3 running OS10.3, and this last week I have been getting messages that my startup disc is full. I have taken everything off I can, emptied the cache and all trash. The best I can get is 25.2 MB free space, and that will only last for

  • I have installed Flash Player 11 but websites still don't recognize it

    I have installed/uninstalled Flash 11 several times, upgraded to IE10, and websites still prompt me to download the current version.