J
javesh
I am displaying a few fields in a table as below
<table>
<tr><td>field1</td></tr>
<tr><td>field2</td></tr>
<tr><td>field3</td></tr>
<tr><td>field4</td></tr>
<tr><td>field5</td></tr>
</table>
I have a link to append a new table with the same fields. What I would
like to do is when I click on "Append new table" link, I would like to
convert all the existing fields in the table in a single row instead
of displaying them by columns. Can somebody give me some inputs on how
I could go about implementing it
-
Anush
<table>
<tr><td>field1</td></tr>
<tr><td>field2</td></tr>
<tr><td>field3</td></tr>
<tr><td>field4</td></tr>
<tr><td>field5</td></tr>
</table>
I have a link to append a new table with the same fields. What I would
like to do is when I click on "Append new table" link, I would like to
convert all the existing fields in the table in a single row instead
of displaying them by columns. Can somebody give me some inputs on how
I could go about implementing it
-
Anush