In a WebDataGrid, how to I define the default Sort column? (Visually, in a property.)
I am not sure there is a default sort column - sorting occurs automatically on clicking the header of a column. Do you need to have the data in the grid sorted by a particular columns before that? If this is the case, I believe the easiest approach is if you directly modify your datasource to include ORDER BY [ColumnName} ASC in the SQL Select clause and then bind this datasource to the grid.