I have a problem i have a grid that groups items based on the month in a finacial year i.e. April 1st month May 2nd month etc.etc. ending on march as the 12th month. How can i make this sort order if i sort now it sorts as April,august,december not april may june july etc. each group heading has to be month as text any ideas
If it comes in as text then you probably need to create a customsortcomparer to accomplish what you need. I believe the help or knowledgebase has some examples check there first.
Nick
Yeah, you need to create an IComparer and assign it to the SortComparer of the grid column. The IComparer interface is pretty simple, there is only one method.
Thanks sorted after now using icomparer