Processing user request(show busy cursor)

hi i am new to jsf.
i want to show the processing thing for the user after submit the form(or any click on SUBMIT button).just like busy cursor in flex.

Come on dude. At least take the effort to ask a proper question, don't just throw some open-ended requirement out there and expect people to draw you up a design sheet.
Being new to JSF might already make this requirement of yours a little too much to begin with; perhaps you want to dig a little deeper into JSF, and for example the combination of JSF and Ajax, to be able to understand enough how to implement this yourself. There are good resources out there, for example did you find BalusC's blog already?
http://balusc.blogspot.com/
It is a treasure trove of JSF related goodness that might just give you a few hints.

Similar Messages

  • Is there a way to show busy cursor in indesign during long processing?

    Hi
    I have created an extension for inDesign. It has long processing. I want to show busy cursor while processing.
    Can anybody help me out?
    Best regards
    Sal

    @ stephen - Busy cursor is shown only on the extension and not anywhere in inDesign with "CursorManager.setBusyCursor();"
    @ Vamitul - its still showing normal cursor with setting ScriptPreference.enableRedraw to false

  • How to show busy cursor  when call webservice using as?

    I want to call webservice using script,but i don't know how
    to show busy cursor.please help me

    Show busy cursor:
    >>>
    CursorManager.setBusyCursor();
    <<<
    and hide it:
    >>>
    CursorManager.removeBusyCursor();
    <<<
    Don't forget to catch all events of the web-service to
    securely remove the busy cursor. Especially, you might wish to
    handle events of the 'results received' and the 'faults appeared'
    logical results.

  • Process chain request shows clock wise

    Hi friends,
    in process chains date/time , log id ,chian -- in date/time the process chains shows red or green
    it shows clock wise in last 3 months what to do
    pplz tell me step wise.
    thank you.

    Hi Prasana,
    The clock symbol denotes that the chain has been changed.  It also gives activation information.
    The chian gets triggered once it has been activated and scheduled.
    Once the chain runs and completes successfully, you see a green request with time stamp.
    If it fails, a red request is seen with the time stamp.
    Did it clear your doubt.  If not do tell, so that I will try to eloborate better.
    Sasi

  • How do i show busy cursor when i have something loaded in subpanel?

    I have a requirement where i used to use make child and get a sub vi to be a child of main vi. Now since this is supported natively by Labview7 i used the subpanel. I have a problem with this approach. If i set the cursor to busy for the main vi, it remains busy for the subvi as well.
    How do i set the cursor busy for main panel and not the subvi?
    Thanks,
    Anand.

    Sounds like you need to dynamically track the position of the cursor on the screen and set the cursor depending on its position.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Disable object, during busy cursor showing

    Hi guys,
    I've a complex text field which I can embed types of font within it. When I try to choose a specific font through the Dropdownlist, I'll show the busy cursor till font embeds inside the text field completely.
    I want to disable my text field based on showing busy cursor... I mean when the busy cursor is showing disable the text filed and after disappearing that, just enabled text field again.
    How can I do that?
    Is there any specific listener for that or what?
    Thanks in advance

    Hello,
    <p>See the Set_Application_Property() built-in. (CURSOR_STYLE)</p>
    Francois

  • Change busy cursor

    Hi guys,
       I am trying to change app's busy cursor, but haven't been successful yet.  I have create a .swf file that work fine.  Next I tired the following code in my application init fuction
                    var style:CSSStyleDeclaration = StyleManager.getStyleDeclaration("CursorManager");
    if (!style) {
    style = new CSSStyleDeclaration();
    style.setStyle( "busyCursor", myBusyCursor );
    StyleManager.setStyleDeclaration("CursorManager", style, false);
    but this does not do anything.  I am using showbusycursor="true" on all my RPC calls, and some depending on the query could take a sec longer.  I just want to override the animated clock with my .swf through out the app.
    Any pointer?  I have spend about a day and half but no luck.  I understand that CursorManager.setBusyCursor() will actually show the cursor, which is not what I want since I don't make a call to show busy cursor explicitly
    Thank you
    Jay

    Hi,
    Just override the default cursor after you call your process, then on complete clear the cursor.
    The following example will set the cursor to a custom cursor, note that by setting the custom cursor the busy cursor will be over riden (in this particular case even if you try to set the busy cursor after the custom cursor).
    David
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">
    <fx:Declarations>
    <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
    <![CDATA[
    import mx.managers.CursorManager;
    [Embed(source="sizeAll.gif")] public static var myCursor:Class;
    private function modifyCursor(): void
    //call a process here
    this.cursorManager.setCursor(myCursor, 2, -10, -10);
    ]]>
    </fx:Script>
    <s:Button x="72" y="49" label="Mod Cursor" click="modifyCursor()"/>
    <s:Button x="72" y="89" label="Show Busy" click="this.cursorManager.setBusyCursor()"/>
    <s:Button x="72" y="129" label="Remove Cursor" click="this.cursorManager.removeAllCursors()"/>
    </s:Application>

  • How would I get visible busy cursor while calling ImageSnapshot.captureImage?

    Hi,
    I'm not sure if I understand correctly, but below is my very simple MXML file, where I try to show busy cursor before calling ImageSnapshot.captureImage. But instead my cursor dissapears atl all and then reappears after call is complete. Is it known functionality or should I use some callLater() call? Any help would be appreciated.
    My code:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
          xmlns:s="library://ns.adobe.com/flex/spark"
          xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
    <fx:Declarations>
      <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
      <![CDATA[
       import mx.graphics.ImageSnapshot;
       import mx.graphics.codec.JPEGEncoder;
       import mx.managers.CursorManager;
       private function clickHandler() : void {
        CursorManager.setBusyCursor();
        const encoder:JPEGEncoder = new JPEGEncoder();
        var imageSnapshot:ImageSnapshot = ImageSnapshot.captureImage(mainContainer, 96, encoder, true);
        CursorManager.removeAllCursors();
      ]]>
    </fx:Script>
    <s:BorderContainer id="mainContainer" width="50%" height="50%">
      <s:Label x="40" y="44" text="My label" width="60" height="31"/>
      <s:Button x="30" y="79" label="Button" click="clickHandler()"/>
    </s:BorderContainer>
    </s:Application>

    I'm experiencing the same problem. ¿Did you solve it?
    It happens as if it were no background image defined for the bussy cursor.
    But I have seen that such image is defined in default.css inside framework.swc, so it should work...

  • Busy Cursor for ListBox

    Hi,
        I want to show busy cursor while loading data in list box. Is it possible to show busy cursor for list box or any other way to show busy cursor while loading data in list box.
    Regards,
    Jayagopal.

    you could use the static methods in the CursorManager class to show and remove the busy cursor on roll over and roll out events in the List
    CursorManager.setBusyCursor();
    CursorManager.removeBusyCursor();

  • Trying to put a busy Cursor but ...confused why its not showing up

    Hi
    I have a Application and within it there are few HBox, List, VBOX , Canvas ......blah.. But one Vbox(vbox1) has a List(list1)
    From List on itemClick I have a requirement of opening up a tree node by doing a lazy loading of the tree
    And during this processing happens I wanted to show a busy cursor to let the user know that on item click the application is trying to load a tree and then open a particular node
    Did the folllowing
    CursorManager.setBusyCursor();
    and
    CursorManager.removeBusyCursor();
    Also
    var cusrorId:Number = CursorManager.setCursor(StyleManager.getStyleDeclaration("CursorManager").getStyle("busyC ursor"),CursorManagerPriority.HIGH)
    and
    CursorManager.removeCursor(cursorId)
    Also
    list1.cursorManager.setBusyCursor();
    vbox1.cursorManager.setBusyCursor();
    and
    list1.cursorManager.removeBusyCursor();
    vbox1.cursorManager.removeBusyCursor();
    But after all this I didn't see any Busy Cursor
    Busy Cursor is shown for few minutes if I put a Timer in between i.e after the ItemClick and before I trigger the processing of lazy loading of the tree
    Guys any guesses
    How can I make it work ? M I doing something wrong ? Please help
    Regards
    Biswamit

    Is it a 2nd gen or a 3rd gen? Only the 3rd gen requires for power to be plugged in, however all cables need to be disconnected initially regardless of model.
    Apple TV (2nd and 3rd generation): Restoring your Apple TV
    Make sure you are connecting directly to computer, not a keyboard port or USB hub. Try a different cable.

  • [Solved] No busy cursor shows

    dwm + arch very good but no busy cursor shows during application launch waiting time. Googling all day no solution.
    Last edited by duyinthee (Yesterday 05:13:10)

    Trilby wrote:I doubt that is what they do.  I suspect the DE also couldn't change the cursor if the heavy app was launched from the command line.  But if it is launched from a .desktop file (which it often would be in a DE) then the DE can listen for an event of when what program's main window is displayed.
    Ah, that makes more sense - and would allow not having to poll the CPU usage (and I guess there aren't many people launching things from a command line in a DE).
    ... been too long since I've used a DE.
    EDIT
    So if you were to patch dwm, you'd need to add data structures for keeping track of processes that are forked from dwm, and associate each appearing window to the corresponding process in order to determine whether to show a "busy" cursor or a normal one.
    May I say that this goes pretty much against the pricincple of dwm of keeping out superfluous features?
    ... but then again, "superfluous" is subjective, and dwm is made for people patching it to fit their needs, and while having a "busy cursor" in dwm may not seem useful for the big part of dwm users, you are free to patch it whatever way you like, and that's the beauty of a hackable WM
    Last edited by ayekat (2015-06-21 14:51:07)

  • "Your request cannot be processed. Contact your Business Objects ....."

    Can anyone help with this error message?
    Description:
    : URL: /PerformanceManagement/jsp/dm-getpage.jsp? url=AfQJDRWQ3WNOtAoCRk5MQ4U
    Stack Trace: {"Error":{"error":"null","PageError1":"Your request cannot be processed. Contact your Business Objects administrator.","PageError6":"Description: ","PageError9":"Error: ","PageError8":"Stack Trace: ","stacktrace":"","desc":"URL: /PerformanceManagement/jsp/dm-getpage.jsp? url=AfQJDRWQ3WNOtAoCRk5MQ4U","type":4}}

    Hi,
    I'm on a 3.1 SP7 version, and some times I face this problem.
    I'm not sure, but when I have many users exporting reports to Excel, this problem is more probably.
    I read a workaround, but I didn't try it (because my problem is intermittent)
    - Increase the cache size from initconfig.properties file up to 4096 (500 by default)
    If this step doesn't work the try:
    - Increase the stack size of Performance Management servers; changing (command line) -JTCss 1024 (default value) to -JTCss 2048
    Another workaround: this problem just appear in our environment with IE8; if we try with Firefox the behaviour is perfect

  • Software request shows as completed but software not deployed to user computer.

    User from my organization has submitted software request from the SCCM software portal, but installation doesn't happen. The User was automatically added to application deployment
    active directory group , but software not appearing in the application catalog for further process and software request shows installation completed.  What would be the issue?
    SN

    Ah... it looks like you are using the Application Approval Workflow Solution, which brings SCOrch and Service
    Manager in to play.  You'll have to trace through the runbook to see what actions trigger the closing of the service request. If you're not seeing anything happen on the ConfigMgr side, its likely a problem with the runbook.
    Do you see the application request in ConfigMgr at all?  Does it actually get approved by the workflow?
    I hope that helps,
    Nash
    Nash Pherson, Senior Systems Consultant
    Now Micro -
    My Blog Posts
    If you found a bug or want the product to work differently,
    share your feedback.
    <-- If this post was helpful, please click the up arrow or propose as answer.

  • One work process can only process one user request at a time?

    Hi,
       How to configure the how many work processes for 80 concurrent users login daily.One work process can only process one user request at a time? Does this mean a login user has a dedicated work process servicing him. Or many login users interleave a work process's service? ,clarify the same.
    Thanku

    There are different types of work processes and the number needed depends on the number of transactions that will take place in the system. We are running 80 concurrent users with 15 dialog work processes. Please see the link below for an explanation:
    http://help.sap.com/saphelp_46c/helpdata/en/fc/eb2e8a358411d1829f0000e829fbfe/content.htm

  • Need to show data related to Process order request , BOM in a smart form

    Hi,
    I need to show data related to
    •     Process order request
    •     BoM
    Now in selection screen we are entering the followings.
    Manufacturing  Plant ,MRP Controller, Production scheduler, Order type , Order , Material, Sales order, WBS Element,Release,Scheduled start, Scheduled finish ,Selection profile.
    how to get 1> Process Order number,Produced Material,Material Description,Print date,Narcotics indicator , Quantity produced , Phase number , Phase description ,Resource description,Standard value  to show in a request form.
      2> Item category ,Component code,Component description , Component quantity ,Component Unit of measure ,BoM base quantity.
    Please help me how to get those values , what should be the aaproach , how to write the select quiry.
    Thanks

    Hi
    To get BOM details, do the following:
    1. Use the material number and goto Article to BOM link table (MAST) to get STLNR (BOM).
    2. With this STLNR, goto STPO table (where STLNR is the key field).  Here you will get all the BOM details like components (IDNRK), UoM (MEINS) etc....
    Hope this helps.
    THanks
    Vijay
    <b>PLZ REWARD POINTS IF HELPFUL</b>

Maybe you are looking for

  • How can I transfer a docx. or pdf. document of microsoft word to the ipad?

    Hello How can I transfer my docx. and pdf. files using the newest edition of microsoft office word from my Laptop to the program "pages 09"? It seems that pages can only import doc. files? To convert my files makes no sense because the whole layout w

  • Using Function Module RS_CONV_EX_2_IN without a predefined structure

    HELLO, In a SDN Blog  I have seen the FM 'RS_CONV_EX_2_IN' can be used to convert formatted char value to float. I am trying this FM to convert some data but the final data format does not belong to an existing structure. I have tried to define withi

  • Hard drive not going to sleep

    I have six external hard drives but since loading Maverick two of them won't 'go to sleep' at night. I never had a problem before.

  • How long are emails stored in iCloud

    How long are e-mails stored on iCloud servers after they have been read? Is there a way to ensure they are kept indefinitely? Most mail seems to disappear after a month or so.

  • Business Area error in BAPI_ACC_DOCUMENT_POST

    I am using BAPI_ACC_DOCUMENT_POST to post an accounting document (FB50). In the header of BAPI parameter I pass BUS_ACT as 'RFBU'. I am getting an error message Cost center belong to business area 'XXX' not 'YYY'. The reason is see for this error is