SharePoint 2013のリストには複数の行のテキスト列Aがあり、複数の行のテキスト列Bがあります。列Bの列を項目編集時にのみ列Aにコピーしたいので編集フォームで列の値を別の列にコピー
すぐにやろうと思っていましたが、解決できません。私が試した何
は、私はIDを追加編集フォームページの
一部が怒鳴る 'columnA' と 'columnB' の異なる行にある
<table border="0" cellspacing="0" width="100%">
<tr>
<td width="190px" valign="top" class="ms-formlabel">
<H3 class="ms-standardheader">
<nobr>A</nobr>
</H3>
</td>
<td width="400px" valign="top" class="ms-formbody" id="columnA">
<SharePoint:FormField runat="server" id="ff2{$Pos}" ControlMode="Edit" FieldName="A" __designer:bind="{ddwrt:DataBind('u',concat('ff2',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@A')}"/>
<SharePoint:FieldDescription runat="server" id="ff2description{$Pos}" FieldName="A" ControlMode="Edit"/>
</td>
</tr>
<tr>
<td width="190px" valign="top" class="ms-formlabel">
<H3 class="ms-standardheader">
<nobr>B</nobr>
</H3>
</td>
<td width="400px" valign="top" class="ms-formbody" id="columnB">
<SharePoint:FormField runat="server" id="ff3{$Pos}" ControlMode="Edit" FieldName="B" __designer:bind="{ddwrt:DataBind('u',concat('ff3',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@B')}"/>
<SharePoint:FieldDescription runat="server" id="ff3description{$Pos}" FieldName="B" ControlMode="Edit"/>
</td>
</tr>
</table>
HTMLコード/フィーダーをご提供できますか? – hallleron