I have the following datagrid
<aspataGrid
id="grdSearchResults"
runat="server"
Width="544px"
Height="93px"
CssClass="StandardFont"
AllowSorting="True"
OnSortCommand="grdSearchResults_SortCommand"
BorderStyle="Solid"
BorderColor="Maroon"
EnableViewState="False"
AutoGenerateColumns="False"
ShowFooter="True"
SelectedItemStyle-Width="50"
ItemStyle-Width="50"
CellSpacing="0"
CellPadding="0">
This event never fires.
Sub grdSearchResults_SortCommand(ByVal s As Object, ByVal e As DataGridSortCommandEventArgs)
blah blah blah
End Sub
Any ideas on why my sort routine isn't firing?
Thanks
<aspataGrid
id="grdSearchResults"
runat="server"
Width="544px"
Height="93px"
CssClass="StandardFont"
AllowSorting="True"
OnSortCommand="grdSearchResults_SortCommand"
BorderStyle="Solid"
BorderColor="Maroon"
EnableViewState="False"
AutoGenerateColumns="False"
ShowFooter="True"
SelectedItemStyle-Width="50"
ItemStyle-Width="50"
CellSpacing="0"
CellPadding="0">
This event never fires.
Sub grdSearchResults_SortCommand(ByVal s As Object, ByVal e As DataGridSortCommandEventArgs)
blah blah blah
End Sub
Any ideas on why my sort routine isn't firing?
Thanks