For Each itemcollection As GridDataItem In gvUserJobMapping.Items
If itemcollection.OwnerTableView.Name = "gvUserJobMapping" Then
End If
Next
I want to iterate my gridviewrows and how can i access my first column value field in my grid. Because I want to iterate all the rows and keep those values in the arraylist.
If itemcollection.OwnerTableView.Name = "gvUserJobMapping" Then
End If
Next
I want to iterate my gridviewrows and how can i access my first column value field in my grid. Because I want to iterate all the rows and keep those values in the arraylist.