Filter on top of table

hi I can insert a fixed form at the top of the data table that repeats the sugar filters … only fixed at the top of the table ??? and how can you do it ??
thank you
Like this…

There is a way to display the search form on the list view of modules. For that you need to modify file config_override.php at the root of your installation. If you want to add the form to a module you need to add the following line:

//This will display the search form on the Accounts list view
$sugar_config['enable_legacy_search'][0] = 'Accounts';

Don’t forget to run QR&R to make sure changes are reflected.

Thanks,

AlxGr

[quote=“AlxGr, post:2, topic:71495”]
C’è un modo per visualizzare il modulo di ricerca nella vista elenco dei moduli. Per questo è necessario modificare il file config_override.php alla radice della propria installazione. Se si desidera aggiungere il modulo a un modulo, è necessario aggiungere la seguente riga:

//This will display the search form on the Accounts list view
$sugar_config['enable_legacy_search'][0] = 'Accounts';

Non dimenticare di eseguire QR&R per assicurarti che le modifiche si riflettano.

Grazie,

AlxGr
Thanks i try it …

More info on how to add that functionality to multiple modules here:

Thanks,

AlxGr