How do you get the contents of a given cell when it is clicked on?
What do I substitute for the [???] in the example above?
Code:
Dim dg As DataGridItem
dg = e.Item
dg.Attributes.Add("onclick", "getCellData('" & [???] & "')")
......
function getCellData(s){
alert(s)
}
What do I substitute for the [???] in the example above?