Hi,
I am trying to duplicate an example from the Grid Demos
here but with a few minor differences. I would like to achieve this serverside if possible.
Instead of counting the number of rows selected (in the example), I want the values of each column within each row selected to be displayed in a separate control (listbox/label/something that can handle multiple selections and values)on the same page.
Example: A user clicks the row(s) they are interested in and the values of every column within the selected row(s) get listed in another control for the user to see. Basically a shopping cart without using another grid. These values will be used to send out as fields within an email.
There are LOTS of great examples I found by Shinu, Princy, and others (a good client-side example for
1 row is
here) that demonstrate this functionality with 1 selected row, but I just can't (and don't really know how) seem to paste together multiple row selections and getting their values to another control. Many of the examples for 1 row at a time look similar to this:
Maybe server-side is a bad way to go? Is client-side 'better'? Ajax? Any ideas? Thanks. Joe