Question: Can you tell me how to sort a column in a grid in descending order in SalesLogix?
Answer: Use this code:
DataGrid2.Columns.item(1).
Sorted = csUp
or
DataGrid2.Columns.item(1).Sorted = csDown
Either will allow you to sort in descending order. Remember, the datagrid's
'Sortable' property needs to be set to 'True' to work. If
you don't set Sortable to True, you'll see the sorting direction arrow in
the column pointing in the right direction, but it won't actually sort.