XML Editor
Sign up for a WebBoard account Sign Up Keyword Search Search More Options... Options
Chat Rooms Chat Help Help News News Log in to WebBoard Log in Not Logged in
Conferences Close Tree View
+ Stylus Studio Feature Requests (1192)
+ Stylus Studio Technical Forum (14621)
+ Website Feedback (249)
- XSLT Help and Discussion (7625)
-> + Use of before and after string (3) Sticky Topic
-> - How do I substitute element ty... (1)
-> + How does one add working days ... (4)
-> - Help, I have existing XLT and... (1)
-> + Need help on XSLT issue - (2)
-> + EDI to XML Conversion (7)
-> - XML To JSON Conversion using X... (1)
-> + Formatting Paragraphs to same ... (2)
-> - Grouping of records (1)
-> + Problems with xsd 1.1 (4)
-> + XML to HL7 mapping (3)
-> + XSLT 3 and Iterate (2)
-> + XSL-FO to PDF preview (3)
-> + java.lang.RuntimeException: Er... (2)
-> + Create Acroforms with Stylus X... (2)
-> + How to change XSLT parameter s... (3)
-> + how to change format of the da... (2)
-> + Search "Next 8 Results " doesn... (2)
-> - Support for Git (1)
-> + newbee (8)
-- [1-20] [21-40] [41-60] Next
+ XQuery Help and Discussion (2017)
+ Stylus Studio FAQs (159)
+ Stylus Studio Code Samples & Utilities (364)
+ Stylus Studio Announcements (113)
Topic  
Postnext
Simone SSubject: Aligning table data according to "colspec" element
Author: Simone S
Date: 24 Apr 2006 12:19 AM
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">
<font size="2">
<td>
<xsl:attribute name="align"><xsl:value-of
select="@align"/></xsl:attribute>
<xsl:apply-templates/>
</td>
</font>
</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

Postnext
Minollo I.Subject: Aligning table data according to
Author: Minollo I.
Date: 24 Apr 2006 10:50 AM
Please don't cross post questions on multiple forums.

Syulus Studio Developer Network is in support to the Stylus Studio product. General XSLT questions are better posted on the xsl-list at mulberrytech.com

Minollo

Posttop
Simone SSubject: Problem in posting my XSL problems
Author: Simone S
Date: 24 Apr 2006 11:42 PM
Originally Posted: 24 Apr 2006 11:43 PM
Hello

Please let me know as to where I have to mail my XSL problems. I am sending my problems to "xsl-list@lists.mulberrytech.com", but I am neither getting any reply nor my problem is getting displayed like others who send it.

Please reply to me. I have been trying with this for past one week, but with no luck.

Plese reply to me as soon as possible

Thanks

   
Download A Free Trial of Stylus Studio 6 XML Professional Edition Today! Powered by Stylus Studio, the world's leading XML IDE for XML, XSLT, XQuery, XML Schema, DTD, XPath, WSDL, XHTML, SQL/XML, and XML Mapping!  
go

Log In Options

Site Map | Privacy Policy | Terms of Use | Trademarks
Stylus Scoop XML Newsletter:
W3C Member
Stylus Studio® and DataDirect XQuery ™are from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2016 All Rights Reserved.