選択内容を SharePoint フィールドに保存したい新しいフォームにラジオ テキスト ボックスがあります。渡されたパラメーターに応じてオプションを表示/非表示にする必要があります。
たとえば、パラメーターが ...aspx?Group=A のようなものである場合
次に、次のコードを使用して、選択肢の特定のセクションのみを表示します。
<xsl:choose>
<xsl:when test="$Group = 'A' ">
<td> Choose from the right </td>
<td><span class="ms-RadioText" title="Choice 1"> <input id="..." type="checkbox" name="..."/><label for="...">Choice 1</label></span></td>
<td><span class="ms-RadioText" title="Choice 2"> <input id="..." type="checkbox" name="..."/><label for="...">Choice 2</label></span></td>
</xsl:when>
<xsl:when test="$Group = 'B' ">
<td> Choose from the right </td>
<td><span class="ms-RadioText" title="Choice 3"> <input id="..." type="checkbox" name="..."/><label for="...">Choice 3</label></span></td>
<td><span class="ms-RadioText" title="Choice 4"> <input id="..." type="checkbox" name="..."/><label for="...">Choice 4</label></span></td>
</xsl:when>
正しいパラメーターのボックスを表示することに成功しましたが、チェックボックスを選択してアイテムを保存すると、選択がアイテムに保存されません。
項目の Choice フィールドにマップする選択肢を取得するにはどうすればよいですか?