我在新表单中有一个单选文本框,我想将选择保存到 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>
我成功地让框显示正确的参数,但是当复选框和选择并保存项目时,选择不会保存到项目中。
如何让选择映射到项目的选择字段?