Problem with filter tailor records

Hello,

I have a problem. I created a table in the database using Tailor. However, when I have records, the search/filtering of records in the tab in the admin panel searches only for “title”. I want to search by other fields, such as “email” I add in .yaml searchable: true, but it doesn’t work

uuid: 07bb273b-3f74-4ee8-a77c-a15618d66483
handle: Client
type: structure
name: Client
drafts: false


structure:
    maxDepth: 3

primaryNavigation:
    label: Clients
    icon: icon-users
    order: 140

navigation:
    label: Clients
    icon: icon-users
    order: 140

            
fields:

    first_and_last_name:
        label: First and Last Name
        type: text
        placeholder: ""
        span: left
        searchable: true

    email:
        label: Email
        type: email
        placeholder: ""
        searchable: true

    shippment_date:
        label: Shippment Date
        type: datepicker
        mode: date
        span: left

    language:
        label: Language
        type: text
        placeholder: ""
        span: right

    city:
        label: City
        type: text
        placeholder: ""
        span: left


    delivery_products:
        label: Product code
        type: text
        span: right

    webinar_id:
        label: Webinar id
        type: number
        span: left

    password:
        label: Password
        type: text
        default: no
        span: right

    reset:
        label: Reset
        type: text
        default: no
        span: left

Version October: 3.6.26

I see that there is no solution. Is the problem poorly described or is it known but there is no solution at the moment?

Hi @webskieweby ,

Sorry for the delay.

Try this:

fields:

    first_and_last_name:
        label: First and Last Name
        type: text
        placeholder: ""
        span: left
        column:
          searchable: true

    email:
        label: Email
        type: email
        placeholder: ""
        column:
          searchable: true
2 Likes

Yes, Its works :slight_smile: Thank You