mjlux

Results 4 comments of mjlux

We have encountered a similiar issue in the OrderList component with a nested Panel Component. To solve it we added the following keyboard event Listener to the input: `(keydown.space)="$event.stopPropagation()"` This...

The default behaviour of a OrderListItem on space is to select/unselect the item. We faced the same issue and resolved it by adding an `(keydown.space)="$event.stopPropagation()"` EventListener to the input. Hope...

As correctly mentioned the `.p-button-icon-only` class interferes with the badge attribute of the p-button component. You can circumvent this issue by using a different setup of your p-button implementation ```...

> This worked for me > > ``` > this.items = [ > { > label: 'Lbl 1', > icon: 'custom-icon-1', > }, > { > label: 'Lbl 2', >...