patrickTingen / DataDigger

A dynamic dataviewer for your Progress / OpenEdge databases
https://datadigger.wordpress.com/
MIT License
50 stars 23 forks source link

Field names for extents do not sort intuitive #28

Closed patrickTingen closed 6 years ago

patrickTingen commented 6 years ago

When editing a record that has an extent field larger than 10, the names sort technically correct, but not logically. For salesrep the sorting for field Month-Quota is:

  1. Month-Quota[1]
  2. Month-Quota[10]
  3. Month-Quota[11]
  4. Month-Quota[12]
  5. Month-Quota[2]
  6. Month-Quota[3]
  7. etc.

This has been changed to sort more intuitively by adding leading zeros to the extent nr:

  1. Month-Quota[01]
  2. Month-Quota[02]
  3. Month-Quota[03]
  4. Month-Quota[04]
  5. etc.