Closed makolivaresbbt closed 3 years ago
Okay got it solved.
Need to extend SubmittedForm
.
Change the value
$values = GridField::create(
'Values',
SubmittedFormField::class,
$this->Values()->sort('Created', 'ASC')
);
to
$values = GridField::create(
'Values',
SubmittedFormField::class,
$this->Values()->sort('ID', 'ASC')
);
After submitting the form and checking the submission tab, all the fields are rambled and not in order based on what the fields order. Any idea on to fix this one?