Guest User

Untitled

a guest
Apr 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <label class="right">State
  2. <select name="fields[state]">
  3. <option value=""></option>
  4. <xsl:for-each select="states/state">
  5. <option value="{.}">
  6. <xsl:if test=".={events/save-appointment/post-values/state}">
  7. <xsl:attribute name="selected">selected</xsl:attribute>
  8. </xsl:if>
  9. <xsl:value-of select="." />
  10. </option>
  11. </xsl:for-each>
  12. </select>
  13. </label>
Add Comment
Please, Sign In to add comment