Hello,
I just created my first grocery CRUD project to track IP addresses, host names, and location of network equipment where I work. I found that IP addresses are sorted alphabetically and not numerically. Can this behavior be changed?
For example,
172.20.1.158
172.20.1.159
172.20.1.16 <-------This should not be after 172.20.1.159
...
I would like all other columns to retain the default sort (alpha) but just this one column should be handled as if the numbers in the IP addresses were numbers and not chars.
Thanks for any pointers.