[CLOSED] RadioGroup and Input Values in IE7

  1. #1

    [CLOSED] RadioGroup and Input Values in IE7

    Hi,

    whenever a radio is selected, and then a section is changed, a coma is added to the Input Value. Any suggestions on how to avoid that/workaround?

    Using IE7.

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="DIFE.WEB.WebForm1" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <script runat="server">
        [DirectMethod]
        public void RadioChange()
        {
            X.Msg.Alert("", Request["rg"]).Show();
        }
    
    </script>
    <!DOCTYPE html>
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server" />
            <ext:RadioGroup ID="RadioGroup1" runat="server" GroupName="rg">
                <Items>
                    <ext:Radio ID="Radio1" runat="server"  InputValue="1" BoxLabel="True" />
                    <ext:Radio ID="Radio2" runat="server" InputValue="0" BoxLabel="False" />
                </Items>
                <Listeners>
                    <Change Handler="App.direct.RadioChange();" />
                </Listeners>
            </ext:RadioGroup>
        </form>
    </body>
    </html>
    Last edited by Daniil; Nov 27, 2012 at 3:59 AM. Reason: [CLOSED]
  2. #2
    Hi @trezv,

    Thank you for the report. We are investigating.
  3. #3
    Hi,

    Fixed in SVN, rev 4581 (http://svn.ext.net/premium/trunk)
  4. #4
    the fix worked, thank you.

Similar Threads

  1. Replies: 2
    Last Post: Oct 10, 2012, 6:27 PM
  2. Replies: 1
    Last Post: Apr 24, 2012, 3:38 AM
  3. Replies: 5
    Last Post: Aug 02, 2010, 12:30 PM
  4. Replies: 3
    Last Post: Jul 08, 2010, 1:28 PM
  5. [CLOSED] [1.0] Assign custom values to RadioGroup items
    By SandorD in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 22, 2010, 8:20 AM

Posting Permissions