JavaScript - Limit Display Row In Table

In this tutorial we will create a Limit Display Row In Table using JavaScript. This code will limit the display of rows in the table when user click the filter button. The code itself use a onclick() to call a specific function that can limit the display rows in the table by providing the input value in the for() loop as the length of an indented array value. You can apply this script to your code, it is a user-friendly program feel free to modify it. We will use JavaScript to add some new feature to the website interface by actually written into an HTML page. It is what gives your page a different interactive elements and animation that engage a user. .

Getting Started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save this as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <nav class="navbar navbar-default">
  8. <div class="container-fluid">
  9. <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10. </div>
  11. </nav>
  12. <div class="col-md-3"></div>
  13. <div class="col-md-6 well">
  14. <h3 class="text-primary">JavaScript - Limit Display Row In Table</h3>
  15. <hr style="border-top:1px dotted #ccc;"/>
  16. <div class="col-md-4">
  17. <div class="form-group">
  18. <label>Firstname</label>
  19. <input type="text" id="firstname" class="form-control"/>
  20. </div>
  21. <div class="form-group">
  22. <label>Lastname</label>
  23. <input type="text" id="lastname" class="form-control"/>
  24. </div>
  25. <div class="form-group">
  26. <label>Address</label>
  27. <input type="text" id="address" class="form-control"/>
  28. </div>
  29. <div class="form-group">
  30. <button type="button" onclick="saveData()" class="btn btn-primary form-control">Save Data</button>
  31. </div>
  32. </div>
  33. <div class="col-md-8">
  34. <div class="form-inline">
  35. <label>ROW#</label>
  36. <input type="number" id="row" style="width:80px;" class="form-control"/>
  37. <button class="btn btn-success" onclick="changeRow();">Filter</button>
  38. </div>
  39. <br />
  40. <table class="table table-bordered">
  41. <thead class="alert-info">
  42. <tr>
  43. <th>Firstname</th>
  44. <th>Lastname</th>
  45. <th>Address</th>
  46. </tr>
  47. </thead>
  48. <tbody id= "result"></tbody>
  49. </table>
  50. </div>
  51. </div>
  52. </body>
  53. <script src="js/script.js"></script>
  54. </html>

Creating the Script

This code contains the script of the application. This code will limit the table row when the button is clicked. To do this just copy and write these block of codes as shown below inside the text editor and save it as script.js inside the js directory
  1. var data = [];
  2.  
  3. function saveData(){
  4. var firstname = document.getElementById("firstname");
  5. var lastname = document.getElementById("lastname");
  6. var address = document.getElementById("address");
  7.  
  8. if(firstname.value == "" || lastname.value == "" || address.value == ""){
  9. alert("Please complete the required field first!");
  10. }else{
  11. var member = {
  12. 'firstname': firstname.value,
  13. 'lastname': lastname.value,
  14. 'address': address.value,
  15. };
  16.  
  17. data.push(member);
  18. displayData(data.length);
  19. firstname.value = "";
  20. lastname.value = "";
  21. address.value = "";
  22.  
  23. }
  24. }
  25.  
  26.  
  27. function changeRow(){
  28. var row=document.getElementById('row').value;
  29.  
  30. if(row=="" || row<=0){
  31. alert("Please enter a valid number");
  32. }else{
  33. if(data.length == 0){
  34. alert("No data found!");
  35. }else{
  36. displayData(row);
  37. }
  38.  
  39. }
  40. }
  41.  
  42.  
  43. function displayData(length){
  44. var table = "" ;
  45.  
  46. for(var i=0; i<length; i++){
  47. table += "<tr>";
  48. table += "<td>"
  49. + data[i].firstname +"</td>"
  50. + "<td>" + data[i].lastname +"</td>"
  51. + "<td>" + data[i].address +"</td>" ;
  52. table += "</tr>";
  53. }
  54.  
  55. document.getElementById("result").innerHTML = table;
  56.  
  57. }
There you have it we successfully created a Limit Display Row In Table using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment