Click here to Skip to main content
15,893,663 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi I am creating a dynamic html table and adding some content to the rows and also aaded onclick event for each row so that when that row got clicked I will able to capture the row value.Please suggest me how would I do that.

Thanks
Posted
Updated 19-Mar-13 23:14pm
v2
Comments
Karthik Harve 20-Mar-13 5:44am    
are you adding the table in Page_Int event ? show your code.
Prafulla Sahu 20-Mar-13 6:22am    
It is a method where i am creating my tables actually I am using javascript to get the table rows text

1 solution

You can use query for this function. Write a jquery event as,
$(document).ready(function () {
$("tr.test").click(function () {

var values = $(this).children('td').map(function () {
return this.innerHTML;
}).toArray();

//All the td values in each column will be stored in the array of values. If you want to check add an alert statement,like alert(values); to know the numbers. Please note that the values start as values[1] and not from values[0] in regular arrays.
});
});


//Your dynamic row goes here.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900