Hello,
Is it possible to remove header part (filter,all,none) of a multi-select filter ?
Best Regards
Jean-Luc
1 Answers
You can add this CSS style after css files inclusion to hide multi-select header.
<style>
.ui-multiselect-header {
display: none;
}
</style>
Your Answer