08-24-2011 11:39 AM
Hi,
I'm new to SalesLogix development and have been asked to help make some modifications to my company's site. I need to find out how to define/change the sort order for the data displayed in a data grid.
Any assistance would be a big help and greatly appreciated.
Thanks
09-07-2011 02:30 PM
Easiest way to do this is to add the following line to a C# Snippet Action (you can also do this with a Code Snippet, but you may have to get a reference to the native datagrid control)....
this.QFDataGrid.Sort("YourPropertyName", SortDirection.Descending);
Jeremy Couzens
CRMnow
09-08-2011 09:11 AM
Thanks, I will give that a try.