hiboudev
hiboudev
@ryancramerdesign Do you need more information? If you can't understand the issue I could reproduce it in a separate project.
And if I use: `$race->setAndSave(["raceResults" => $results, 'eloNeedsUpdate' => false]);` the table raceResults is not saved but eloNeedsUpdate is saved. So to save this 2 values I have to do:...
@ryancramerdesign I'm already getting the unformatted value, and no pagination is set on this page. I'll give a try to $page->trackChange('raceResults'), and hope you fill fix this anyway.
$page->trackChange('raceResults') workaround is working.
But the workaround doesn't work everywhere, I have another code where I also need to set the variable to make it update: ``` $rows = $hotlapPage->hotlapLeaderboard; // Adding and editing...
@ryancramerdesign I'm cloning only some fields to an existing page.
@ryancramerdesign I did another test, inserting directly in database and I see the same rounding, and here is the solution: https://stackoverflow.com/a/62515384 If I set the type double to this field,...
@ryancramerdesign In FieldtypeFloat, this 'float NOT NULL' should be a 'double NOT NULL'. ``` public function getDatabaseSchema(Field $field) { $schema = parent::getDatabaseSchema($field); $schema['data'] = 'float NOT NULL'; return $schema; }...