Getting Started

23 Nov 20179 minutes to read

This section briefly describes how to create a ProgressBar control using Javascript and learn its features.
Essential JavaScript ProgressBar displays a ProgressBar within a web page that allows you to show the progress of an event. Here, you can learn how to customize the progress and color of the ProgressBar in a real-time application to indicate the strength of the password, where the progress changes with respect to the change in length of the password. This helps you to validate the password is typed.

The following screenshot shows the ProgressBar.

Create a ProgressBar

Essential JavaScript ProgressBar widget is created using a simple <div> element. This element provides built-in features that allow you to change the progress, size and text of the control.

You can create the ProgressBar widget by using a simple input <div> element as follows:

Create an HTML file and add the following template to the HTML file to create your ProgressBar. It also includes the necessary scripts and styles.

  • HTML
  • <html>
       <head>
          <meta name="viewport" content="width=device-width, initial-scale=1.0" charset="utf-8"  />
          <!-- Style sheet for default theme (flat azure) -->
          <link href="http://cdn.syncfusion.com/28.1.33/js/web/flat-azure/ej.web.all.min.css"rel="stylesheet"/>
          <!--Scripts-->
          <script src="http://cdn.syncfusion.com/js/assets/external/jquery-1.10.2.min.js"> </script>
          <script src="http://cdn.syncfusion.com/js/assets/external/jquery.easing.1.3.min.js"> </script>
          <script src="http://cdn.syncfusion.com/28.1.33/js/web/ej.web.all.min.js"></script>
          <!--Add custom scripts here -->
       </head>
       <body>
          <!--Initialize the ProgressBar -->
       </body>
    </html>

    Add <input> element inside the <body> tag of your file to create a ProgressBar.

  • HTML
  • <div style="content-container-fluid">
       <div class="row">
          <div class="cols-sample-area">
             <div class="frame">
                <div class="wrap_up">
                   <!--Initializing password field*-->
                   <label for="startButton">Password</label>
                   <input type="password" id="password" style="border-radius:0px"/>
                </div>
                <div class="control">
                   <!--initializing ProgressBar control-->
                   <div id="progressBar"></div>
                </div>
             </div>
          </div>
       </div>
    </div>

    It also includes a Password field and through that the progress of the ProgressBar can be controlled

    Initialize ProgressBar in script.

  • JAVASCRIPT
  • $(function () {   
            $("#progressBar").ejProgressBar({ 
                height: 20,    
                value: 30,  /*Specify the initial value of the progress in percentage*/  
                width: 200,
            });
            progressObj = $("#progressBar").data("ejProgressBar");
            progressObj.option("text", "weak");
            $(".e-progress").css({ "background-color": "#DE0909", "border-radius":"10px" });          
            $(".e-progressbar").css({ "border-radius": "10px", "border": "1px solid black" });
        });

    Here, you can initialize the properties of the ProgressBar such as height, value, width, text that is applied to the control by default.

    The following screenshot displays a ProgressBar control.

    Include the following code within the <head> tag to change the page layout.

  • CSS
  • <style type="text/css" class="cssStyles">
       /*applying styles */
       .frame {
           border: 1px solid #BBBCBB;
           border-radius: 10px 10px 10px 10px;
           padding: 50px 60px;
           margin-top: 40px;
           width: 400px;
           margin-left: 400px;
       }
       .control {
           margin-bottom: 5px;
           margin-left: 230px;
       }
       .wrap_up {
           margin-left: 105px;
           font-size: 18px;
       }
       #progressBar {
           margin-top: 10px;
       }
    </style>

    Progress Control using Length of the Password Field

    In real-time scenario, the progress of ProgressBar is changed according to the length of text in the password field by binding the change in the properties of control and checking the length of the password field.

    Add the following code example inside the <script> tag of your HTML file.

  • JAVASCRIPT
  • var progressObj, buttonObj, k = 10, timer = window.clearInterval(timer), i = 0, obj;
        $(document).keypress(function () {    //To capture the keypress inside the document           
            i = $("#password").val().length;
            if (i < 5) 
                weak();
            else if (i > 5 && i < 7) 
                Strong();
            else if(i>7) 
            var password= $("#password").val();
            if(/^[a-zA-Z0-9- ]*$/.test(password) == false);
                very_strong();
        });
        function Strong() {     //Change the width and text of the progress ... called when the length is greater than 5
            progressObj.option("text", "strong");
            progressObj.option("percentage", k + 50);
            $(".e-progress").css("background-color", "#0055FF");
            $(".e-progressbar").css("color", "#000000");       
        }
        function very_strong() {     //Change the width and text of the progress ... called when the length is greater than 7
            progressObj.option("text", "Very strong");
            progressObj.option("percentage", k + 90);
            $(".e-progress").css("background-color", "Green");
            $(".e-progressbar").css("color", "#000000");   
        }
        function weak() {     //Change the width and text of the progress... called when the length is less than 5
            progressObj.option("text", "Weak");
            progressObj.option("percentage", k+20 );
            $(".e-progress").css("background-color", "#DE0909");
            $(".e-progressbar").css("border-radius", "10px");      
        }

    You can calculate length of the password and call the appropriate function that changes the percentage property of ProgressBar.

    • The weak() function changes the text inside the ProgressBar to Weak and percentage to 30, that is invoked when the length of the text is less than 5.
    • The strong() function changes the text inside the ProgressBar to Strong and percentage to 60, that is invoked when the length of the text exceeds 5.
    • The very_strong() function changes the text inside the ProgressBar to Very Strong and percentage to 100, that is invoked when the length of the text exceeds 7 and the text contains a symbol in it.

    You can change themes or appearance of the ProgressBar as required.

    The final output is displayed as follows.

    You can also bind an event at the start and finish of a ProgressBar by using the start, complete and change properties of the ProgressBar.