If I set a column as a date and supply a string it tries to parse the string as a date. It’s clearly doing something better than native javascript because it will correctly determine that 29/07/1986 is 29th July 1986. Whereas normal JS will get upset because it’s not in US format..
So the grid should get kudos for this. However, the first issue is that if I supply two dates in the column 29/07/1986 and 03/05/1986 it determines that the dates are 29th July and 5th March (not 3rd May)! So whilst it’s tried to be helpful actually it isn’t and so it might as well just fail.
But the biggest issue is that if you do provide a date in non-US format then it is horrifically slow. Processing 8000 dates in non-US format takes 28 seconds on my machine!