Wrox Programmer Forums
Go Back   Wrox Programmer Forums > XML > XSLT
|
XSLT General questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old April 25th, 2006, 12:13 AM
Authorized User
 
Join Date: Apr 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Default Aligning table data according to "colspec" element

This is my XML file
===================
<table-wrap id="tab001" position="float">
<label>TABLE 1.</label><caption><p>Table caption Table caption Table
caption Table caption</p></caption>
<table alt-graphic="014460500423X_tab001" frame="topbot">
<tgroup cols="5">
<colspec colname="1" colwidth="7.5*"/>
<colspec colname="2" align="center" colwidth="1*"/>
<colspec colname="3" align="center" colwidth="1*"/>
<colspec colname="4" align="center" colwidth="1.3*"/>
<colspec colname="5" align="center" colwidth="1.2*"/>
<thead>
<row>
<entry morerows="1" valign="bottom"
align="center"><p>Characteristic</p></entry>
<entry namest="2" nameend="5" rowsep="1"><p>Age group
#x0028;years#x0029;</p></entry>
</row>
<row>
<entry morerows="0" colname="2"><p>80#x2013;89</p></entry>
<entry><p>90#x2013;99</p></entry>
<entry><p>100#x2013;122</p></entry>
<entry><p>77#x2013;122</p></entry>
</row></thead><tbody>
<row>
<entry/>
<entry namest="2" nameend="5" align="center"><p><emphasis
type="italic">Percentages</emphasis></p></entry>
</row>
<row>
<entry><p>Women</p></entry>
<entry><p>49.4</p></entry>
<entry><p>56.9</p></entry>
<entry><p>80.1</p></entry>
<entry><p>60.0</p></entry>
</row>
<row>
<entry><p>Widowed</p></entry>
<entry><p>66.4</p></entry>
<entry><p>86.1</p></entry>
<entry><p>95.3</p></entry>
<entry><p>80.5</p></entry>
</row>
<row>
<entry><p>Living with children or grandchildren</p></entry>
<entry><p>64.6</p></entry>
<entry><p>79.3</p></entry>
<entry><p>86.0</p></entry>
<entry><p>74.8</p></entry>
</row>
<row>
<entry><p>No formal education</p></entry>
<entry><p>54.7</p></entry>
<entry><p>68.1</p></entry>
<entry><p>83.5</p></entry>
<entry><p>66.2</p></entry>
</row>
<row>
<entry><p>Children or grandchildren the primary#160;source of
financial support</p></entry>
<entry><p>60.5</p></entry>
<entry><p>77.8</p></entry>
<entry><p>85.2</p></entry>
<entry><p>72.4</p></entry>
</row>
<row>
<entry><p>Rural residents</p></entry>
<entry><p>55.0</p></entry>
<entry><p>63.2</p></entry>
<entry><p>71.8</p></entry>
<entry><p>61.9</p></entry>
</row>
<row>
<entry><p>Sample sizes</p></entry>
<entry namest="2" nameend="5" align="center"><p><emphasis
type="italic">Number</emphasis></p></entry>
</row>
<row>
<entry><p>#160;#160;Men</p></entry>
<entry><p>1,787</p></entry>
<entry><p>1,298</p></entry>
<entry><p>481</p></entry>
<entry><p>3,638</p></entry>
</row>
<row>
<entry><p>#160;#160;Women</p></entry>
<entry><p>1,741</p></entry>
<entry><p>1,715</p></entry>
<entry><p>1,937</p></entry>
<entry><p>5,455</p></entry>
</row>
<row>
<entry><p>#160;#160;All</p></entry>
<entry><p>3,528</p></entry>
<entry><p>3,013</p></entry>
<entry><p>2,418</p></entry>
<entry><p>9,093</p></entry>
</row></tbody></tgroup></table>
<table-wrap-foot>
<fn-group type="footnotes">
<fn id="tfn001">
<label><emphasis
type="italic">Note</emphasis>#x003A;</label><p>Weighted mean
percentages, unweighted <emphasis
type="italic">N</emphasis>.</p></fn></fn-group></table-wrap-foot></table-wr­ap>
===========

This is my XSL coding
=====================
<xsl:template match="entry">

<td>
<xsl:attribute name="align"><xsl:value-of
select="@align"/></xsl:attribute>
<xsl:apply-templates/>
</td>

</xsl:template>


The above coding for aligning the table data falling within "entry"
works fine, but the same coding does not work for empty tag "colspec".
Can anyone please help me with this.

Thanks









Similar Threads
Thread Thread Starter Forum Replies Last Post
Aligning tables in Report Designer chfhess BOOK: Professional SQL Server 2005 Reporting Services ISBN: 0-7645-8497-9 0 August 3rd, 2008 11:32 AM
How Retrieve data of a node or from an element chandu.mca007 XML 1 December 16th, 2006 03:11 PM
Vertically aligning divs in Opera ceadge CSS Cascading Style Sheets 0 August 23rd, 2006 08:10 PM
Aligning Text of a textbox mahulda General .NET 0 July 27th, 2004 12:16 AM
Update a table with XML element values alavastros XML 1 July 16th, 2004 11:36 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.