From e334c472fb4be44feec3a73402fc4a2b062cbfc0 Mon Sep 17 00:00:00 2001 From: admin Date: Sat, 21 Oct 2006 19:44:22 +0000 Subject: --- user_guide/libraries/table.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'user_guide/libraries/table.html') diff --git a/user_guide/libraries/table.html b/user_guide/libraries/table.html index 10bb4b3d9..d41cc88a8 100644 --- a/user_guide/libraries/table.html +++ b/user_guide/libraries/table.html @@ -12,7 +12,7 @@ @@ -75,8 +75,8 @@ HTML Table Class

Examples

-

Here is an example showing how you can create a table from a multi-dimensional array. -Note that the first array index will become the table heading (or you can set your own headings using the +

Here is an example showing how you can create a table from a multi-dimensional array. +Note that the first array index will become the table heading (or you can set your own headings using the set_heading() function described in the function reference below).

@@ -92,7 +92,7 @@ $data = array(
echo $this->table->generate($data);
-

Here is an example of a table created from a database query result. The table class will automatically generate the +

Here is an example of a table created from a database query result. The table class will automatically generate the headings based on the table names (or you can set your own headings using the set_heading() function described in the function reference below).

@@ -165,7 +165,7 @@ $tmpl = array (
$this->table->set_template($tmpl); -

Note:  You'll notice there are two sets of "row" blocks in the template. These permit you to create alternating row colors or design elements that alternate with each +

Note:  You'll notice there are two sets of "row" blocks in the template. These permit you to create alternating row colors or design elements that alternate with each iteration of the row data.

You are NOT required to submit a complete template. If you only need to change parts of the layout you can simply submit those elements. -- cgit v1.2.3-24-g4f1b