Ext.Net:Radiogroup,从代码隐藏中选择它

时间:2013-06-18 11:07:18

标签: asp.net webforms ext.net

我有像这样的radiogruop控制;

<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值codebehind.I有2个值来自数据库1和0。 根据这个值,我想选择Radio4或Radio5。(它只会选择一个放射性物体)

1 个答案:

答案 0 :(得分: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。