我正在尝试执行以下 JS。我有一个单选按钮,单击时应将变量 RefreshMapping 的属性设置为子级,如下面的代码中所指定。但是,这似乎不起作用。我已将 RefreshMapping 的默认值设置为模板,每次我选择单选按钮时,该值都应更改为子级,但事实并非如此。任何帮助,将不胜感激。
</script>
<SPAN nowrap>
<body>
<table cellpadding='0' cellspacing='0' width=''>
<tr>
<td class='{DataValueWrite}' nowrap='nowrap' width='' align="top">
<input <pega:include name="ClientValidation"/> type="radio" class="Radio" name="<pega:reference name="$this-name" />" onclick="document.getElementById('RefreshMapping').value='child';document.getElementById('RefreshMapping').click();" id="<pega:reference name="$THIS-DEFINITION(pyPropertyName)" />"
<pega:when java="<%= tools.getProperty("SelectedProduct.ChildProd").toString().equals("child") %>"> checked
</pega:when>
<pega:when java="<%= tools.getProperty("SelectedProduct.PROD_LEVEL").toString().equals("5") %>">
disabled
</pega:when>
value="true"><font class = "LabelName">Child Sub-Product/ Services</font>
</td>
</tr>
</table>
</body>
</SPAN>
PS:这是在一个名为 Pega PRPC 的工具中,因此请忽略语法,因为它特定于 PEGA