0

我有这样的无线电组控制;

<ext:RadioGroup ID="rdyAktifmi" runat="server" FieldLabel="Aktifmi" Width="150"
    Flex="1">
  <Items>
   <ext:Radio ID="Radio4" runat="server" BoxLabel="pasif" InputValue="0" />
   <ext:Radio ID="Radio5" runat="server" BoxLabel="aktif" InputValue="1" />

  </Items>
  </ext:RadioGroup>

我如何设置 RadioGroup 值代码隐藏。我有 2 个值来自数据库 1 和 0。取决于这些值,我想选择 Radio4 或 Radio5。(它只会是一个选定的单选框)

4

1 回答 1

1
        int radioActivateIndex = 0;
        //set radioActivateIndex to wich one you want to activate here

        if (radioActivateIndex==0)
        {
            Radio4.SetValue(true);
            Radio5.SetValue(false);
        }
        else
        {
            Radio4.SetValue(false);
            Radio5.SetValue(true);
        }

如果超过 2 个收音机当然使用 switch-case。

于 2013-07-08T10:54:08.690 回答