Is it possible to hide the move all buttons? Even better, hide the move all from left to right but allow the move all from right to left? Also, can we allow multiple selection without having the select all checkbox at the top?
Hi @ken-glass,
Both are not supported out of the box. You can probably hide the buttons with CSS - use display:none.
Thought I'd share how I resolved this. Those buttons don't have a class name that allows to select one specific one (I really only want to hide the move all from left to right) I had to use :nth-child to get the one I was after:
.rz-button:has(.rz-button-icon-left.rzi):nth-child(3) {
display: none;
}