Date format in blueprint structure column

I have a Tailor blueprint structure with a field definition of the datepicker type. I don’t know how to change the column date format in the table presentation. This definition does not work for me:

columns:
   date:
       format: d.m.Y

fields:
   date:
       type: datepicker
       format: d.m.Y

Try to add the definitions for columns in the field definition, like this:

    date:
        label: Date
        type: datepicker
        mode: date
        column:
            format: d.m.Y

Works, this is the correct answer. Thank you.

1 Like