[FIXED] [V0.6] Radio fields issue

  1. #1

    [FIXED] [V0.6] Radio fields issue

    Hi there!

    I found an issue on the radio field control. I have two radio fields like this:

    <ext:Radio ID="Radio1" runat="server" Name="a"></ext:Radio>
    <ext:Radio ID="Radio2" runat="server" Name="a"></ext:Radio>
    In the code behind, when I check a radio field and then I click on a button, the .checked property of the checked radio return a "False" value.

    What's the matter? Is this a bug?

    Thanks
    Ale.
  2. #2

    RE: [FIXED] [V0.6] Radio fields issue



    Hi Ale,

    This was a bug with how the "name" attribute was being applied in the <ext:Radio> control (and others).

    We've changed things around a bit and removed the .Name property from all the Field controls.

    With the <ext:Radio>, you can now group the Radio inputs by using the .GroupName property.

    Example

    <ext:Radio ID="Radio1" runat="server" GroupName="Group1" />
    <ext:Radio ID="Radio2" runat="server" GroupName="Group1" />
    The new code has been committed to svn and will be publicly available with the v0.6 release.

    Hope this helps.
    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] Composite Fields, Labels and Radio Buttons
    By GavinR in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 22, 2012, 6:33 PM
  2. [CLOSED] [1.0] Radio Check Listener issue
    By state in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Dec 18, 2009, 9:17 AM
  3. [CLOSED] radio buttons layout issue
    By jsemple in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 26, 2009, 5:24 PM
  4. Replies: 5
    Last Post: Sep 19, 2008, 6:21 PM
  5. [FIXED] [V0.6] CheckBox and Radio
    By Timothy in forum Bugs
    Replies: 2
    Last Post: Sep 16, 2008, 10:50 AM

Posting Permissions