I have an ASP.net page with a GridView.
The GridView has a number of rows, each with an associated ID number. I would like to make ASP.net output something like <tr data-rowId='123'>...</tr> for each row. I know that I can make it output <tr class='123'> using the cssClass attribute on the GridRow object, but is it possible to use custom data attributes on an ASP.net GridView?
data-rowIDas one of the fields in your Gridview, and make it hidden? – Robert Harvey♦ Jul 12 '11 at 19:22$.parentto get the row, but this seems like a kludge. – Daniel Allen Langdon Jul 12 '11 at 19:51