jQuery 3 - Creating & Modifying The DOM
Written by Ian Elliot   
Monday, 31 October 2016
Article Index
jQuery 3 - Creating & Modifying The DOM
Move and Copy
Inserting, Replacing & Removing
Building a Dynamic Table

Building A Dynamic Table

We could continue with the theory of DOM creation and manipulation for a lot longer but it is time for a simple example. Suppose you want to generate a table dynamically. Then what you need to do is build a sub-tree with the required rows and  data cells. The best way to do this is to create a function so that you can stamp out as many tables as you require:

function table(n, m) {

In this example the table will have n rows and m columns but you can add additional parameters or better an options object to set other details of the table.

The first thing to do is to create one object of each type that we are going to use to build the table - one table, one table body, one table row and one table data cell:

var table = $("<table>");
var tbody = $("<tbody>");
var row = $("<tr>");
var cell = $("<td>");

The idea is that once we have one of each type of object we can build the table using append.

First we need to create n rows and the simplest way to do this is to use a for loop and the clone method to create a new row object. You might say why not just create a new row object but the idea is that if the row object has already been customized in some way it is simpler to stamp out copies than to create new objects from scratch:

for (var i = 0; i < n; i++) {
 var tempRow = row.clone();

Now we have a row object we can create some data cells and append them:

for (var j = 0; j < m; j++) {
  tempRow.append(cell.clone().html(i+","+j));
}

Again the clone method is used so as to replicate any custom settings on the basic cell object Notice that to give the table something to display we use the html method to add some content  - the row and column number.

Once the row has been built we can append it to the table body and let the row for loop continue. Finally we append the table body to the table object and return it as the result:

tbody.append(tempRow);
}
table.append(tbody);
return table;
}

The complete function is:

function table(n, m) {
 var table = $("<table>");
 var tbody = $("<tbody>");
 var row = $("<tr>");
 var cell = $("<td>");
 for (var i = 0; i < n; i++) {
  var tempRow = row.clone();
  for (var j = 0; j < m; j++) {
   tempRow.append(cell.clone().html(i+","+j));
  }
  tbody.append(tempRow);
 }
 table.append(tbody);
 return table;
}

To use it you would simply call it and append the result to whatever element you wanted to:

$("body").append(table(3, 2));

There are many ways of creating a table using jQuery and you can argue issues of efficiency verses elegance. If efficiency isn't a big issue, and with browsers and JavaScript engines getting faster it often isn't then this sort of construction is easier to understand and more logically structured than yards of HTML.

Of course, if you really want to create an "enterprise" quality custom control, you probably should create at the very least a jQuery addin and preferably a jQuery UI widget - which is something we will find out how to do in a later chapter.

 

More Information

http://jquery.com/

 

 Available as a Book:

smallcoverjQuery

buy from Amazon

  1. Understanding jQuery
  2. Basic jQuery CSS Selectors
       Extract: The DOM
  3. More Selectors
       Extract: Basic Selectors
  4. The JQuery Object
  5. Filters 
  6. DOM Traversal Filters 
  7. Modifying DOM Objects
       Extract: Modifying The DOM 
  8. Creating Objects & Modifying The DOM Hierarchy
  9. Working With Data
       Extract: Data ***NEW!!!
  10. Forms 
  11. Function Queues
  12. Animation 
  13. jQuery UI
  14. jQuery UI Custom Control
  15. Easy Plugins 
  16. Testing With QUnit
  17. Epilog A Bonus Function

Also Available:

jquery2cover

buy from Amazon

 

Banner


JavaScript Jems - Objects Are Anonymous Singletons

JavaScript should not be judged as if it was a poor version of the other popular languages - it isn't a Java or a C++ clone. It does things its own way.  In particular, every object can be regard [ ... ]



JavaScript Canvas - Typed Arrays

Working with lower level data is very much part of graphics. This extract from Ian Elliot's book on JavaScript Graphics looks at how to use typed arrays to access graphic data.


Other Articles

 

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

Banner


JavaScript Jems - Objects Are Anonymous Singletons

JavaScript should not be judged as if it was a poor version of the other popular languages - it isn't a Java or a C++ clone. It does things its own way.  In particular, every object can be regard [ ... ]



JavaScript Canvas - Typed Arrays

Working with lower level data is very much part of graphics. This extract from Ian Elliot's book on JavaScript Graphics looks at how to use typed arrays to access graphic data.


Other Articles



Last Updated ( Wednesday, 30 November 2016 )