- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHello,
I have a grid control which has check box as one of its field. What I need to do is to see which of the checkboxes have been checked and then get the corresponding datakey name/value stored as a hidden field, concatenate all these values into a comma seperated string and pass it to a modal window. I need to do all of these in Javascript. Can you please help me to do this..
Thanks!!
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: awabidPosted on 2006-08-02 at 04:28:19ID: 17231984
hi
0).value then 0).value.t ostring
well i don't know about how to do it in Javascript, but here is a way to do that:
add a gridview control, and after selecting the datasource kind of stuff, go to Edit Columns in smart tag, and add a template field control. now go to the source view and in the template field tags, add the following code
<templatefield>
<asp:CheckBox runat=server ID="CheckedFields"...
</templatefield>
Now you can see checkboxes in the Design view. Add a button, and in the button click code, add something of the sort:
dim index as integer = gridview1.rows.count -1
dim values as string = ""
for grv as integer = 0 to index
if gridview1.rows(grv).cells(
values = values & "," & gridview1.rows(grv).cells(
end if
next
i haven't copied the code, but this is just a lead. Once you will be going ahead, maybe thats a helpful beacon...
tell me if you want it that way, (without javascript), and can't locate the exact code, so i will do it for you...
Happy Programming