09-16-2013 03:54 PM
Saleslogix 7.5.4 Web version
Where can I change the default order of a customized tab to display the data showing the most recent record first instead of showing the oldest date first?
Thanks!
09-17-2013 01:07 AM
Add a C# snippet load action to the form. For example:
grdOpportunities.Sort("ActualClose", SortDirection.Descending);
09-17-2013 01:16 AM