Hi,
We are seeing numbers getting reported as Strings for new ListGrid records. We can add explicit conversion on our side. But, this was messing up some number formatting so thought you should know about it.
You can recreate by going here:
http://www.smartclient.com/#enterNewRows
Then, add this editorExit property to the population field and click Try it. Click Enter New Row. Enter a numeric value for Population and then try to click on a different grid row. You'll get an alert showing population is a string and not a number?
We are seeing numbers getting reported as Strings for new ListGrid records. We can add explicit conversion on our side. But, this was messing up some number formatting so thought you should know about it.
You can recreate by going here:
http://www.smartclient.com/#enterNewRows
Then, add this editorExit property to the population field and click Try it. Click Enter New Row. Enter a numeric value for Population and then try to click on a different grid row. You'll get an alert showing population is a string and not a number?
Code:
editorExit:function(editCompletionEvent, record, newValue, rowNum, colNum){ alert(typeof countryList.getEditValue(15,"population"));},
Comment