次のドロップダウンがあります
<xsl:if test="bankguarantee!=0">
<li style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:10pt; margin:0cm 0cm 0pt; ">
<p style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:10pt; margin:0cm 0cm 0pt; ">
<span style="font-family:Arial,Arial MT,Luxi Sans,Verdana; font-size:11.0pt; ">The terms and conditions of <xsl:if test="bankguarantee='1'">the </xsl:if>
<xsl:if test="bankguarantee!='1'">each </xsl:if>
<xsl:for-each select="bankguarantees/bankguaranteedata">
<xsl:if test="producttypes/option[@id='A']='selected'">A</xsl:if>
<xsl:if test="producttypes/option[@id='B']='selected'">B</xsl:if>
<xsl:if test="producttypes/option[@id='C']='selected'">C</xsl:if>
<xsl:if test="producttypes/option[@id='D']='selected'">D</xsl:if>
<xsl:if test="producttypes/option[@id='E']='selected'">E</xsl:if>
<xsl:if test="producttypes/option[@id='F']='selected'">F</xsl:if>
<xsl:if test="producttypes/option[@id='G']='selected'">G</xsl:if>
<xsl:if test="producttypes/option[@id='H']='selected'"><xsl:value-of select="otherprodtypebox"/></xsl:if>
<xsl:if test="position()!=last() and position()!=last()-1">
<xsl:text>, </xsl:text>
</xsl:if>
<xsl:if test="position()=last()-1">
<xsl:text> and </xsl:text>
</xsl:if>
<xsl:if test="position()=last()">
<xsl:text></xsl:text>
</xsl:if></xsl:for-each>
</xsl:if>
および次のxml
<producttypes>
<option id="A">selected</option>
<option id="B"/>
<option id="C"/>
<option id="D"/>
<option id="E"/>
<option id="F"/>
<option id="G"/>
<option id="H"/>
</producttypes>
<otherprodtypebox/>
現時点では基本的にすべて正常に動作しますが、複数の発生を避け、他のすべてのボックスを最後に配置したいと考えています。これらの画面は 99 個あります。
現時点では、A、B、B、otherbox、otherbox を取得できる 5 つのオプションを選択するとします。
A が複数回選択された場合に A のみを表示し、G までのすべての文字について同じようにしたい
問題は、倍数を持つことができるHの他のボックスに付属しています
あなたが持つことができるように
A, B, C, D, E, F, G, H, H, H, H AND H
これが理にかなっていることを願っており、解決策は非常に高く評価されています。
NB XML は画面ごとに作成されるため、毎回異なるものが選択された 99 の異なる XML を使用できることに注意してください。これは、for-each の部分が難しいところです。おそらく、複数の A が選択されているかどうかを検出できます。ありがとう