Our pure JavaScript Scheduler component


Post by nico-lgtech »

How can i add a placeholder for the input below "Prestation"

Thanks.
Attachments
image.png
image.png (124.89 KiB) Viewed 814 times

Post by pmiklashevich »

Hello,

Please add `filterable` config to the column like shown below:
{
    text       : 'City',
    field      : 'city',
    flex       : 1,
    filterable : {
        filterField : {
            placeholder : 'Enter city'
        }
    }
},
According to docs it's boolean or function, but it's going to be an object in feature releases. Here is the ticket: https://app.assembla.com/spaces/bryntum/tickets/8799-add-support-for-column-filterable-filterfield-config/details

Best,
Pavel

Pavlo Miklashevych
Sr. Frontend Developer


Post by nico-lgtech »

Thanks :D

Post Reply