Newbie Question: Are HTML attributes always stripped for tables?
Jacob Lauemøller <[email protected]>
| Newsgroups | gmane.comp.java.enhydra.barracuda.general |
|---|---|
| Message-ID | <[email protected]> |
Hi all,
I have been experimenting a bit with Barracuda and have run into a problem. I
have an HTML page looking somewhat like
<html>
...
<table id="resultTable">
<tr>
<td align="center">Column A</td>
<td align="right">Column B</td>
</tr>
</table>
</body>
I have created a table model and attached a DefaulTableView to a BTable
instance using this model. When I run my servlet, the table contents are
replaced by the values present in the model (as expected) but the "align"
attributes on the <td> elements are gone. What am I doing wrong?
TIA,
Jacob