I need to add the feature names to the "crossectiongradebookwide.xls" file. I've tryed numerous times and am able to get the heading to display properly but its not pulling the data from my file. Can someone help me with this? I've tryed bently support but they are of no help.
Thanks.
Post a sample XML file. I do not have one handy at this time.
Charles (Chuck) Rheault CADD Manager
MDOT State Highway Administration
Just quickly glancing at the schema for this stylesheet, I don't see any feature names in the CrossSectionSurface\CrossSectionPoint group that are tied to each station, offset and elevation.
Where do you want the feature names to go? under the SOE data? Thanks....
Yes thats correct, under SOE data. Thanks.
I was able to get this to work by inserting this code into the stylesheet:
<tr>
<th align="left" lang="en">Feature:</th>
<xsl:for-each select="CrossSectionPoint">
<td align="right" style="padding-left:5px;padding-right:5px" nowrap="nowrap">
<xsl:value-of select="CrossSectionFeatures/CrossSectionFeature/@name"/>
</td>
</xsl:for-each>
</tr>
I generated a cross section set, then updated the set with crossing features, and then used the cross section report command to select the features.
I hope this helps! <Kate>
Awesome! Thanks, it works!