Hi all,
Actually I'm using in the event HtmlRowCreated something like the code below to select in the gridview the values with the field SELECTED=1,
I want to know if is there a better way to do this. I was looking for a FIELD property in the Command Column or something like that,
Any suggestion ?
thnks!
If
e.GetValue("SELECTED") = 1 Then
gvCompany.Selection.SelectRowByKey(e.GetValue("TABLEKEY"))
Else
gvCompany.Selection.UnselectRowByKey(e.GetValue("TABLEKEY"))
End If