[CLOSED] Progress bar

  1. #1

    [CLOSED] Progress bar

    Hi,

    i want to show progress bar in center of the screen. how i show this. I want progress bar initially in hidden mode .The Process will be start the progress bar also started, then after finished the process progress bar also hiden automatically.

    Based on the Record count i want to show progress bar text, for example Uploading Item 1 of 120.

    How i can achive this.pls replay me

    Thanks in advance

    By
    Speedstep
  2. #2

    RE: [CLOSED] Progress bar

    Hi,

    Please see how to center progress bar

    <%@ Page Language="C#" %>
    <%@ Register assembly="Ext.Net" namespace="Ext.Net" tagprefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/tr/xhtml11/dtd/xhtml11.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>Example</title>
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager" runat="server" Theme="Gray" />
            
            <ext:ProgressBar ID="PB1" runat="server" Hidden="true" Width="200" StyleSpec="position:absolute;"></ext:ProgressBar>
            
            <ext:Button runat="server" Text="Show">
                <Listeners>
                    <Click Handler="PB1.show();PB1.el.center(Ext.getBody());" />
                </Listeners>
            </ext:Button>
        </form>
    </body>
    </html>
    For another tasks see
    https://examples1.ext.net/#/Miscella...t_side_update/
    https://examples1.ext.net/#/Miscella...r_side_update/

Similar Threads

  1. [CLOSED] Progress bar Issue
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 27, 2010, 11:35 AM
  2. [CLOSED] Progress bar
    By CSG in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Nov 23, 2009, 9:16 AM
  3. [CLOSED] progress bar
    By speedstepmem4 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 09, 2009, 8:53 AM
  4. Progress Bar
    By fabiomarcos in forum 1.x Help
    Replies: 1
    Last Post: Jan 27, 2009, 12:18 PM
  5. Progress bar
    By flaviodamaia in forum 1.x Help
    Replies: 1
    Last Post: Sep 11, 2008, 12:31 PM

Posting Permissions