I am trying to use one report for multiple items. I need to be able to sort the report in code behind on multiple fields.
Dim sorting1 As New Telerik.Reporting.Data.Sorting()
sorting1.Expression = "=Fields.DriversLicenseExpiration.Date"
sorting1.Direction = Telerik.Reporting.Data.SortDirection.Asc
I found the above in the forums but I can not get it to work and I need to be able to sort on multiple columns like:
sorting1.Expression = "=Fields.DriversLicenseExpiration.Date; Fields.ProgramGroup"
Dim sorting1 As New Telerik.Reporting.Data.Sorting()
sorting1.Expression = "=Fields.DriversLicenseExpiration.Date"
sorting1.Direction = Telerik.Reporting.Data.SortDirection.Asc
I found the above in the forums but I can not get it to work and I need to be able to sort on multiple columns like:
sorting1.Expression = "=Fields.DriversLicenseExpiration.Date; Fields.ProgramGroup"