xsl-list
[Top] [All Lists]

RE: Pagebreaks in Excel-HTML transformer

2006-02-01 07:57:08
There is a lot going on here that you are not showing, so my response cannot be 
as complete as either of us would like. So let's concentrate on a fragment 
that's large enough to work with:

<xsl:for-each select="/document/helper-info/row-breaks/row">

From this (and the fragment of the XML document you show), we can infer that 
the structure of your document is:

<document>
  <helper-info>
    <row-breaks>
      <row>
        <cell></cell>
      </row>
    </row-breaks>
  </helper-info>
</document>

except that the fragment shows that <row> elements are children of <table> 
elements. You have no reference to the <table> element in the XPath I quoted 
above. What is the correct structure of the XML document? Is the excerpt 
incorrect or is the XPath incorrect? 
-- 
Charles Knell
cknell(_at_)onebox(_dot_)com - email

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--