I've got a flexgrid that I fill as follows:
fgCustomers.DataSource = Customers.dtCustomers();
fgCustomers.Cols["CUSTID"].Visible = false;
fgCustomers.Col = -1;
Afterwards, the user needs to be able to sort based on multiple columns (such as Active, Company, Contact, etc.).
It works fine when "AllowSorting" is set to "Single Column", but when it is set to "MultiColumn" it doesn't sort at all. What am I missing? Do I have to implement my own code for this to work???
I'm using VS 2008.