data repeater question

Ask a Question related to ASP.NET Building Controls, Design and Development.

  1. #1

    Default data repeater question

    Hi,

    I have a quick question. I am displaying all the orders that are active. I
    am making use of a datarepeater with checkboxes to display data and a submit
    button to insert into the database.

    suppose i want to make the orders inactive using the checkboxes and click on
    the submit button should update the database.

    How do I capture the event such that only those check boxes that have been
    checked are updated and not others?

    Thanks,
    Stephen.


    Stephen Guest

  2. Similar Questions and Discussions

    1. Question about Repeater
      Hello, I have an ArrayCollection set to dataProvider of one Repeater When i change an item of this ArrayCollection the repeater load again ALL the...
    2. Repeater Data out of order?
      I've got some calendar data coming across an HTTPService that looks like (I've removed some extra elements) ... <WEEK> <DAY PERIOD="1"...
    3. 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 ...
    4. cfformgroup repeater data problems
      The cfformgroup repeater stuffs all instances of a field into a single form scope variable when submitted. Please see the example in Livedocs:...
    5. Repeater: Can't Refer to Data In A Label
      I have been banging my head against a wall trying to get a server-control to reference the text of a hidden <asp:label> so for testing I stripped...
  3. #2

    Default data repeater question

    When you render the checkbox in the template, give them
    all the same name but a different HTML value attribute.
    This value attribute should be the ID that you want to
    update/delete/add (whatever).

    When you post back, if the checkboxes all have the same
    name, the values will be concatenated into a single comma
    delimited value. You can get this from the Request by
    using the name of the checkboxes and then splitting on the
    comma and looping through each value.

    ~Chuck
    >-----Original Message-----
    >Hi,
    >
    >I have a quick question. I am displaying all the orders
    that are active. I
    >am making use of a datarepeater with checkboxes to
    display data and a submit
    >button to insert into the database.
    >
    >suppose i want to make the orders inactive using the
    checkboxes and click on
    >the submit button should update the database.
    >
    >How do I capture the event such that only those check
    boxes that have been
    >checked are updated and not others?
    >
    >Thanks,
    >Stephen.
    >
    >
    >.
    >
    Charles Chen 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