rtucek/vue-query-builder

Make Delete Buttons hideable

Closed this issue · 2 comments

Hi,

is there an easy way to show / hide / disable the delete buttons? It is barely possible to do achieve that with pure css.

it could be possible via config like the dragging disable toggle. for my purposes it would be totaly fineto control it globaly.

Bg

Hi @kellerkind87,

off the top of my head,

.query-builder-child__delete-child {
  display: none;
}

should work.

thx works