Hi everyone,
I have added a field in the res.partner model which I want to update with a drop-down selection from the front end. below is my code, but it's not updating the field
<select class="form-control oe_edit_only" name="x_salutation_test">
<option value="herr">Herr</option>
<option value="frau">Frau</option>
</select>
Also, after the update, I want that field to be selected. how can I do that?
Thanks