I've got a form fields definition file like the following:
fields:
pivot[hall]:
label: Hall
type: text
span: auto
pivot[booth]:
label: Booth
type: text
span: auto
booth_picker:
label: Select Booth
type: boothpicker
span: full
The third field is only a form widget which provides a convenient visual way to set the value of booth
field. Therefore, I do not need the booth_picker
field to be submitted and saved into database because there is no such field in the table. Only hall
and booth
need to be submitted and saved. I am currently getting this error:
SQLSTATE[42S22]: Column not found: 1054 Unknown column 'booth_picker' in 'field list' (SQL: update
users
setupdated_at
= 2016-12-15 13:14:44,booth_picker
= whereid
= 37)"
How can I prevent this helper field from being submitted? Or maybe there is a way of removing this field before the model is saved into database?