V
Veeves
I have added sorting to my datagrid. I added the event handler
Private Sub dgrItems_SortCommand(ByVal source As Object, _
ByVal e As
System.Web.UI.WebControls.DataGridSortCommandEventArgs) Handles
dgrItems.SortCommand
processSortIt(e.SortExpression)
End Sub
I also have an Private Sub dgrItems_ItemCommand event handler on this
web page.
When I click on one of the links in the header that should fire the
SortCommand event, the ItemCommand fires instead.
Anyone know a way to get around this?
Private Sub dgrItems_SortCommand(ByVal source As Object, _
ByVal e As
System.Web.UI.WebControls.DataGridSortCommandEventArgs) Handles
dgrItems.SortCommand
processSortIt(e.SortExpression)
End Sub
I also have an Private Sub dgrItems_ItemCommand event handler on this
web page.
When I click on one of the links in the header that should fire the
SortCommand event, the ItemCommand fires instead.
Anyone know a way to get around this?