You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I have a problem with numbers which lenght is bigger than 17 characters. For example, if in my db a row contains "20140711185900112" (data type long) when the flexigrid loads the data appears "20140711185900110" instead of the number that really is in the db.
I hope someone can help me. Thank you.
The text was updated successfully, but these errors were encountered:
i think this is due to precision problems as numbers in js are generally floating point values. it is more a javascript problem and not a flexigrid one. see this answer for some background: http://stackoverflow.com/a/5812121/944201
workaround: if you don't need to calculate something you could pass it as a string or as it might seem you're using it as some sort of timestamp you yould pass it in a json-object that seperates date from time, like:
Hi! I have a problem with numbers which lenght is bigger than 17 characters. For example, if in my db a row contains "20140711185900112" (data type long) when the flexigrid loads the data appears "20140711185900110" instead of the number that really is in the db.
I hope someone can help me. Thank you.
The text was updated successfully, but these errors were encountered: