xsl-list
[Top] [All Lists]

Re: Grouping into a table (for vertical alignment)

2004-05-25 07:55:56
Daniel,

Is your problem harder than

  <xsl:template match="input">
    <table>
      <tr>
        <td>
          <xsl:apply-templates select="label"/>
        </td>
        <td>
          <input>
            <xsl:attribute name="type">
              <xsl:text>text</xsl:text>
            </xsl:attribute>

            <xsl:for-each select="name | value | class">
              <xsl:attribute name="{name()}">
                <xsl:value-of select="."/>
            </xsl:attribute>
            </xsl:for-each>
          </input>
        </td>
      </tr>
    </table>
  </xsl:template>

?

If so, could you be more specific as to what results you want to get?

Cheers,
Wendell

At 09:11 AM 5/24/2004, you wrote:
Hi,

I am trying to make a generic XSLT for converting XML into XHTML.

I want to put my output into a <table> for vertically aligning the 'label'
and 'input' fields.


======================================================================
Wendell Piez                            
mailto:wapiez(_at_)mulberrytech(_dot_)com
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================