Put a message "Please Waiting" during a working

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?ISO-8859-1?B?Rvpsdmlv?=

    Put a message "Please Waiting" during a working

    Hello all,

    My application delay some minutes when I press a button(it's doing
    some working ).
    How can I put a message: "Please wating" during this delay? It is
    important that after the execution finish this message disappear.


    Fúlvio
  • tomtom.wozniak@gmail.com

    #2
    Re: Put a message "Please Waiting" during a working

    On Feb 13, 9:40 am, "Fúlvio" <fulvi...@gmail .comwrote:
    Hello all,
    >
    My application delay some minutes when I press a button(it's doing
    some working ).
    How can I put a message: "Please wating" during this delay? It is
    important that after the execution finish this message disappear.
    >
    Fúlvio
    One way would be to display a pop-up window that says "please wait".
    Once your processing has completed, the returning page can then simply
    close the pop-up.

    Or, you could dive into AJAX and simply hide/unhide parts of your web
    page, waiting for the processing to finish.

    Are you looking for some javascript code to do this or just wondering
    how a "please wait" message could generally work?

    -Tom Woz

    Comment

    • =?ISO-8859-1?B?Rvpsdmlv?=

      #3
      Re: Put a message &quot;Please Waiting&quot; during a working

      I am waiting for a javascript code.

      Fúlvio

      On Feb 13, 2:34 pm, tomtom.wozn...@ gmail.com wrote:
      On Feb 13, 9:40 am, "Fúlvio" <fulvi...@gmail .comwrote:
      >
      Hello all,
      >
      My application delay some minutes when I press a button(it's doing
      some working ).
      How can I put a message: "Please wating" during this delay? It is
      important that after the execution finish this message disappear.
      >
      Fúlvio
      >
      One way would be to display a pop-up window that says "please wait".
      Once your processing has completed, the returning page can then simply
      close the pop-up.
      >
      Or, you could dive into AJAX and simply hide/unhide parts of your web
      page, waiting for the processing to finish.
      >
      Are you looking for some javascript code to do this or just wondering
      how a "please wait" message could generally work?
      >
      -Tom Woz

      Comment

      • Evertjan.

        #4
        Re: Put a message &quot;Please Waiting&quot; during a working

        Fúlvio wrote on 14 feb 2008 in comp.lang.javas cript:
        On Feb 13, 2:34 pm, tomtom.wozn...@ gmail.com wrote:
        >On Feb 13, 9:40 am, "Fúlvio" <fulvi...@gmail .comwrote:
        >>
        Hello all,
        >>
        My application delay some minutes when I press a button(it's doing
        some working ).
        How can I put a message: "Please wating" during this delay? It is
        important that after the execution finish this message disappear.
        >>
        Fúlvio
        >>
        >One way would be to display a pop-up window that says "please wait".
        >Once your processing has completed, the returning page can then simply
        >close the pop-up.
        >>
        >Or, you could dive into AJAX and simply hide/unhide parts of your web
        >page, waiting for the processing to finish.
        >>
        >Are you looking for some javascript code to do this or just wondering
        >how a "please wait" message could generally work?
        [Please do not toppost on usenet]
        I am waiting for a javascript code.
        Do you want to see this message until this NG submits you that code?
        Could you write it on a piece of paper?

        =============== ===========

        perhaps?

        setTimeout('dis playMessage()', 10);
        doTheJob();
        clearMessage();


        --
        Evertjan.
        The Netherlands.
        (Please change the x'es to dots in my emailaddress)

        Comment

        Working...