In the style off your data table class, set the border-collapse css attribute. Example:
<style type="text/css">
TABLE.myDataTable {
border-collapse: collapse;
}
</style>
...
<h:dataTable ... styleClass="myDataTable"...
On 10/11/05, Marius Kreis <[EMAIL PROTECTED]> wrote:
i think you can do this with stylesheets.
use the attribute columnClasses="mycolumn" to assign a styleclass to the
columns and attach a stylesheet containing something like
.mycolumn
{
border-spacing: 0;
padding: 0;
}
Oliver Gottwald wrote:
> hi everyone,
>
> i was wondering ....
>
> is there a way to get rid of the spacing between columns on a dataTable?
>
> i have a spec for a client that requires that. a quick response would
> be greatly appreciated.
>
> oliver
>
>
>

