This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Why wont this work?



my XML page

....
<s:Schema id='RowsetSchema'>
	<s:ElementType name='row' content='eltOnly'>

		<s:AttributeType name='CaseID' rs:number='1' rs:writeunknown='true'>
			<s:datatype dt:type='string' rs:dbtype='str' dt:maxLength='10'
rs:maybenull='false'/>
		</s:AttributeType>
.....

my XSL page

<xsl:template match="s:AttributeType">
	<xsl:value-of select="@name" />
</xsl:template>

This gives me the string "caseID".

but if I do select="@*" it wont give me ALL attributes. it gives me

data5
data7
data9

how do I get ALL my attribute values into , say an array?

Moazzam



 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]