I am currently running your current winforms iGrid control in C#. The grid is unbound and is being loaded from data coming from a SQL database and loaded into a list of objects. Each object's fields are strongly typed based on how those values are stored in the database.
The issue is, I have a customer number, which is typed as an Integer. When I sort the customer number column, it is sorting as text not numeric. How do I set the column type when defining the layout of the grid? What sort technique should I be using to ensure numbers are actually sorted as numbers?
Thank you for your help