dnadesign / silverstripe-elemental-userforms

Adds a new element for usersforms
BSD 3-Clause "New" or "Revised" License
9 stars 16 forks source link

Form Fields on Submission are not ordered #53

Closed makolivaresbbt closed 3 years ago

makolivaresbbt commented 3 years ago

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?

makolivaresbbt commented 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')
            );