J
Joe Rattz
I am populating a DataGrid with xml. I need to be able to
sort some of the columns. However, the DataView.Sort is
treating my strings (which are numbers in string form from
the xml) as strings and not formatting them as numbers.
So, I get:
1,11,2,22
instead of:
1,2,11,22
How do I get the DataView.Sort to treat these strings as a
numeric type?
Thanks.
sort some of the columns. However, the DataView.Sort is
treating my strings (which are numbers in string form from
the xml) as strings and not formatting them as numbers.
So, I get:
1,11,2,22
instead of:
1,2,11,22
How do I get the DataView.Sort to treat these strings as a
numeric type?
Thanks.