hello! i hope any1 in this forum can help me with my xsl problem, i am quite new to this programming and learning as i go along, this all part of my work,
so for i was doing great till i came across this problem?
the problem is my dropdown menu, the drop down is in html and when u select on of the option the value in theory should go in the xsl fields code below! it works if u just made it a input field, but no in the dropdown, any1 can give me a solution please! field names are made up (marvel and dc) could not think of other names
so for i was doing great till i came across this problem?
the problem is my dropdown menu, the drop down is in html and when u select on of the option the value in theory should go in the xsl fields code below! it works if u just made it a input field, but no in the dropdown, any1 can give me a solution please! field names are made up (marvel and dc) could not think of other names
Code:
<td class="SubTitle3">Release Documents : <select class="Text">
<option value="Marvel">Marvel
</option>
<xsl:attribute name="value">
<xsl:value-of select="field/Comic"/>
</xsl:attribute>
<option value="DC">Dc
</option>
<xsl:attribute name="value">
<xsl:value-of select="field/Comic"/>
</xsl:attribute>
</select></td>