0

我们正在使用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>

有没有高手可以帮帮我?非常感谢。

4

1 回答 1

0

你可以像这样验证它

    <ext:Button ID="Button1" runat="server" Text="Validate"><Listeners><Click Handler="#{rdGrpGender}.validate();" /></Listeners></ext:Button>
于 2013-11-17T13:20:34.160 回答