[CLOSED] Radio Button help

  1. #1

    [CLOSED] Radio Button help

    hi everybody

    Does anybody have an example with a radio button because i tried it but i couldn´t find out how to use the radio button. I´ve been looking for some examples https://examples2.ext.net/ but i didn´t find any

    I want to call a C# method when i click on a radio button but i couldn´t if anybody has an example i will appreciate it a lot

    Thanks
  2. #2

    RE: [CLOSED] Radio Button help

    Do you mean Coolite Radio control or ASP.NET RadionButton?


  3. #3

    RE: [CLOSED] Radio Button help



    Hi heysol,

    For running server-side events you have a couple options that will depend on whether you want an AjaxEvent or PostBack. For an AjaxEvent, the <Check> event will fire.

    Example

    <ext:Radio ID="Radio1" runat="server">
        <AjaxEvents>
            <Check OnEvent="Radio1_Checked" />
        </AjaxEvents>
    </ext:Radio>
    For an old-school postback you'll want to use the OnCheckedChanged event.

    Example

    <ext:Radio ID="Radio1" runat="server" OnCheckedChanged="Radio1_Checked" />
    Hope this helps.

    Geoffrey McGill
    Founder
  4. #4

    RE: [CLOSED] Radio Button help

    thanks man i made a mistake and i didn´t notice thanks for your help !!!

Similar Threads

  1. Radio Button
    By Vaishali in forum 1.x Help
    Replies: 4
    Last Post: Feb 07, 2012, 7:00 AM
  2. [CLOSED] Radio Button Icons
    By rthiney in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 30, 2010, 6:26 PM
  3. Radio button Handler
    By vs.mukesh in forum 1.x Help
    Replies: 0
    Last Post: Jul 01, 2010, 9:55 AM
  4. Radio Button Select
    By Dinesh.T in forum 1.x Help
    Replies: 0
    Last Post: May 19, 2009, 8:30 AM
  5. [CLOSED] Image next to radio button?
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 06, 2009, 11:31 AM

Posting Permissions