I set the datagrid to be sortable,
sort expression = "Column1 asc"
but when i click the column name
the datagrid doesn't load anything, did i miss sth. on the sorting? thanks a
lot!!
in Sort_Command event handler
Dim SortView As DataView = DataSet11.Produ cts.DefaultView
SortView.Sort = e.SortExpressio n
DataGrid1.DataS ource = SortView
DataGrid1.DataB ind()
sort expression = "Column1 asc"
but when i click the column name
the datagrid doesn't load anything, did i miss sth. on the sorting? thanks a
lot!!
in Sort_Command event handler
Dim SortView As DataView = DataSet11.Produ cts.DefaultView
SortView.Sort = e.SortExpressio n
DataGrid1.DataS ource = SortView
DataGrid1.DataB ind()
Comment