Opzioni ricerca su Mediacenter


/ Published in: XML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <select name="Ordinamento" class="casella_selezione_ricerca">
  2. <option value="DataOraInserimentoCrescente">
  3. <xsl:if test="@Ordinamento = 'DataOraInserimentoCrescente'">
  4. <xsl:attribute name="selected">selected</xsl:attribute>
  5. </xsl:if>
  6. Data inserimento crescente
  7. </option>
  8. <option value="DataOraInserimentoDecrescente">
  9. <xsl:if test="@Ordinamento = 'DataOraInserimentoDecrescente'">
  10. <xsl:attribute name="selected">selected</xsl:attribute>
  11. </xsl:if>
  12. Data inserimento decrescente
  13. </option>
  14. <option value="DataOraPubblicazioneCrescente">
  15. <xsl:if test="@Ordinamento = 'DataOraPubblicazioneCrescente'">
  16. <xsl:attribute name="selected">selected</xsl:attribute>
  17. </xsl:if>
  18. Data pubblicazione crescente
  19. </option>
  20. <option value="DataOraPubblicazioneDecrescente">
  21. <xsl:if test="@Ordinamento = 'DataOraPubblicazioneDecrescente'">
  22. <xsl:attribute name="selected">selected</xsl:attribute>
  23. </xsl:if>
  24. Data pubblicazione decrescente
  25. </option>
  26. <option value="NomeCrescente">
  27. <xsl:if test="@Ordinamento = 'NomeCrescente'">
  28. <xsl:attribute name="selected">selected</xsl:attribute>
  29. </xsl:if>
  30. Nome crescente
  31. </option>
  32. <option value="NomeDecrescente">
  33. <xsl:if test="@Ordinamento = 'NomeDecrescente'">
  34. <xsl:attribute name="selected">selected</xsl:attribute>
  35. </xsl:if>
  36. Nome decrescente
  37. </option>
  38. <option value="NumeroVisualizzazioniCrescente">
  39. <xsl:if test="@Ordinamento = 'NumeroVisualizzazioniCrescente'">
  40. <xsl:attribute name="selected">selected</xsl:attribute>
  41. </xsl:if>
  42. Numero visualizzazioni crescente
  43. </option>
  44. <option value="NumeroVisualizzazioniDecrescente">
  45. <xsl:if test="@Ordinamento = 'NumeroVisualizzazioniDecrescente'">
  46. <xsl:attribute name="selected">selected</xsl:attribute>
  47. </xsl:if>
  48. Numero visualizzazioni decrescente
  49. </option>
  50. <option value="VotazioneMediaCrescente">
  51. <xsl:if test="@Ordinamento = 'VotazioneMediaCrescente'">
  52. <xsl:attribute name="selected">selected</xsl:attribute>
  53. </xsl:if>
  54. Voto medio crescente
  55. </option>
  56. <option value="VotazioneMediaDecrescente">
  57. <xsl:if test="@Ordinamento = 'VotazioneMediaDecrescente'">
  58. <xsl:attribute name="selected">selected</xsl:attribute>
  59. </xsl:if>
  60. Voto medio decrescente
  61. </option>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.