Radio Control Buttons Inside a Data Repeater.

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default Radio Control Buttons Inside a Data Repeater.

    I know this is probably pretty trival.
    I am trying to put a radio button inside
    a repeater control. That will allow me to select each row one by one. Then
    once the user clicks on the submit button. It determines which row has been
    selected.

    Can anyone post me a code sample.

    Thanks,
    Mark

    SouthSpawn Guest

  2. Similar Questions and Discussions

    1. Radio buttons inside Accordion tab?
      So I upgraded to 1.6.1 and fixed my IE issues, but it broke my radio buttons. On my page (http://www.riverviewbiblecamp.com/menu.php) I've got radio...
    2. ProgressBar Inside a Repeater Control
      I'm trying to have a progress bar indicate the progress a repeater control is making. Here's what I have so far: <mx:Tile x="206" y="142"...
    3. Returning form data for list of radio buttons
      I am returning a DB query for a set of radio buttons and I am naming them based on the count: <cfouput query="..."> <cfset count = count + 1>...
    4. Using Radio button in a Data Repeater
      I want to use a radio button in a data repeater which will allow me to select only one item. could somebody please help me. Thanks ...
    5. Flash MX 2004: Making radio buttons without using the radio buttoncomponent
      Hello Can anyway suggest a good guide for making radio buttons without the radio button component? I'm new to Flash, but I've gotten to the point...
  3. #2

    Default Re: Radio Control Buttons Inside a Data Repeater.

    void RadioEvent(object sender, EventArgs e)
    {
    RepeaterItem row = ((Control)sender).NamingContainer as RepeaterItem;
    }

    -Brock
    DevelopMentor
    [url]http://staff.develop.com/ballen[/url]


    > I know this is probably pretty trival.
    > I am trying to put a radio button inside
    > a repeater control. That will allow me to select each row one by one.
    > Then
    > once the user clicks on the submit button. It determines which row has
    > been
    > selected.
    > Can anyone post me a code sample.
    >
    > Thanks,
    > Mark


    Brock Allen Guest

  4. #3

    Default Radio Control Buttons Inside a Data Repeater.

    Quote Originally Posted by SouthSpawn View Post
    I know this is probably pretty trival.
    I am trying to put a radio button inside
    a repeater control. That will allow me to select each row one by one. Then
    once the user clicks on the submit button. It determines which row has been
    selected.

    Can anyone post me a code sample.

    Thanks,
    Mark
    I am trying to use a button inside the repeater.Any source code available
    Unregistered Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139