我们正在使用ext.net
. 我知道如何将文本框设为必填字段,但无法强制我们的用户在单选组或复选框组上进行选择。我知道有人只是为其中一个单选按钮分配了一个默认值,但我们的客户希望一开始就不要选中它们,但会迫使网络用户做出选择,这是可以理解的。
即使它们在 IntelliSense 中列出,它也会出现IndicatorText
并且属性无效。AllowBlank
<ext:RadioGroup ID="rdGrpGender" runat="server"
ItemCls="x-check-group-base" FieldLabel="Gender"
ColumnsWidths="60,60"
IndicatorText="*" IndicatorCls="cssIndicator" AllowBlank="false">
<Items>
<ext:Radio ID="rdoMale" runat="server" BoxLabel="M" />
<ext:Radio ID="rdoFemale" runat="server" BoxLabel="F" />
</Items>
</ext:RadioGroup>
有没有高手可以帮帮我?非常感谢。