Does the Grid widget store an entire cell value, with the option to show a certain number of decimal points?
In other words, if a value in the database was 53.858708069844, would that entire value be in memory, and then I can choose to display it as 53.86 or 53.9 or even 54? I ask this for exporting purposes; I would need to export the entire values to a spreadsheet, even though the website itself would only show the number of decimal points the user selected. I would imagine it pretty easy to store the actual value as an attribute in the <td> tag.
In other words, if a value in the database was 53.858708069844, would that entire value be in memory, and then I can choose to display it as 53.86 or 53.9 or even 54? I ask this for exporting purposes; I would need to export the entire values to a spreadsheet, even though the website itself would only show the number of decimal points the user selected. I would imagine it pretty easy to store the actual value as an attribute in the <td> tag.