I’m loading up a Vue data grid with a large amount of data, but the dataTypes for my numbers, floats and integers doesn’t seem to be working consistently. See image below.
All three are defined in columns[] as
number_active_agents: 1001
number_sites dataType = float
agent_tenure dataType = float
I notice that once I bind my data to the grid, and look at my data object in DevTools, something has overwritten the dataTypes to “string.” But only two of the three! See below. Two have been changed to “string” and the other flipped from “float” to “numeric.” What’s going on? How do I prevent this?
-
This topic was modified 1 year, 5 months ago by TomAcx. Reason: images didn't work